Uses of Class
org.refcodes.textual.CsvEscapeMode
-
-
Uses of CsvEscapeMode in org.refcodes.textual
Methods in org.refcodes.textual that return CsvEscapeMode Modifier and Type Method Description CsvEscapeMode
CsvBuilder. getCsvEscapeMode()
Gets the currently setCsvEscapeMode
being used.CsvEscapeMode
CsvEscapeModeAccessor. getCsvEscapeMode()
Gets the currently setCsvEscapeMode
being used.default CsvEscapeMode
CsvEscapeModeAccessor.CsvEscapeModeProperty. letCsvEscapeMode(CsvEscapeMode aCsvEscapeMode)
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the givenCsvEscapeMode
(setter) as ofCsvEscapeModeAccessor.CsvEscapeModeMutator.setCsvEscapeMode(CsvEscapeMode)
and returns the very same value (getter).static CsvEscapeMode
CsvEscapeMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static CsvEscapeMode[]
CsvEscapeMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.refcodes.textual with parameters of type CsvEscapeMode Modifier and Type Method Description static List<String>
CsvBuilder. asFields(String aRecord, char aDelimiter, CsvEscapeMode aCsvEscapeMode, boolean isTrim)
Creates fields from the given record.static String
CsvBuilder. asRecord(Collection<Object> aFields, char aDelimiter, CsvEscapeMode aCsvEscapeMode)
Creates a record from the given fields.static String[]
CsvBuilder. asStrings(String aRecord, char aDelimiterChar, CsvEscapeMode aCsvEscapeMode, boolean isTrim, String[] aCommentPrefixes)
Splits a record into dedicated fields.default CsvEscapeMode
CsvEscapeModeAccessor.CsvEscapeModeProperty. letCsvEscapeMode(CsvEscapeMode aCsvEscapeMode)
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the givenCsvEscapeMode
(setter) as ofCsvEscapeModeAccessor.CsvEscapeModeMutator.setCsvEscapeMode(CsvEscapeMode)
and returns the very same value (getter).void
CsvBuilder. setCsvEscapeMode(CsvEscapeMode aCsvEscapeMode)
Sets theCsvEscapeMode
to be used.void
CsvEscapeModeAccessor.CsvEscapeModeMutator. setCsvEscapeMode(CsvEscapeMode aCsvEscapeMode)
Sets theCsvEscapeMode
to be used.CsvBuilder
CsvBuilder. withCsvEscapeMode(CsvEscapeMode aCsvEscapeMode)
Sets the rowsCsvEscapeMode
to use returns this builder as of the Builder-Pattern.B
CsvEscapeModeAccessor.CsvEscapeModeBuilder. withCsvEscapeMode(CsvEscapeMode aCsvEscapeMode)
Sets the rowsCsvEscapeMode
to use returns this builder as of the Builder-Pattern.
-