Uses of Class
com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
-
Packages that use BufferedValue Package Description com.fasterxml.jackson.dataformat.csv.impl -
-
Uses of BufferedValue in com.fasterxml.jackson.dataformat.csv.impl
Subclasses of BufferedValue in com.fasterxml.jackson.dataformat.csv.impl Modifier and Type Class Description protected static class
BufferedValue.BigNumberValue
protected static class
BufferedValue.BooleanValue
protected static class
BufferedValue.DoubleValue
protected static class
BufferedValue.FloatValue
protected static class
BufferedValue.IntValue
protected static class
BufferedValue.LongValue
protected static class
BufferedValue.NullValue
protected static class
BufferedValue.RawValue
protected static class
BufferedValue.TextValue
Fields in com.fasterxml.jackson.dataformat.csv.impl declared as BufferedValue Modifier and Type Field Description protected BufferedValue[]
CsvEncoder. _buffered
And if output comes in shuffled order we will need to do bit of ordering.protected BufferedValue[]
CsvEncoder. NO_BUFFERED
Methods in com.fasterxml.jackson.dataformat.csv.impl that return BufferedValue Modifier and Type Method Description static BufferedValue
BufferedValue. buffered(boolean v)
static BufferedValue
BufferedValue. buffered(double v)
static BufferedValue
BufferedValue. buffered(float v)
static BufferedValue
BufferedValue. buffered(int v)
static BufferedValue
BufferedValue. buffered(long v)
static BufferedValue
BufferedValue. buffered(java.lang.String v)
static BufferedValue
BufferedValue. bufferedNull()
static BufferedValue
BufferedValue. bufferedNumber(java.lang.String numStr)
static BufferedValue
BufferedValue. bufferedRaw(java.lang.String v)
Methods in com.fasterxml.jackson.dataformat.csv.impl with parameters of type BufferedValue Modifier and Type Method Description protected void
CsvEncoder. _buffer(int index, BufferedValue v)
-