-
Enum Constant Summary
Enum ConstantDescriptionThe bom symbol.The comment symbol.The end of file symbol.The eol symbol.The eol symbol trash.The escape symbol.The other symbol.The quote symbol.The separator symbol.The space symbol. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Checks if is check for similar escape and quote.boolean
isTrash()
Checks if is trash.static EncounteredSymbol
Returns the enum constant of this type with the specified name.static EncounteredSymbol[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SPACE_SYMBOL
The space symbol. -
SEPARATOR_SYMBOL
The separator symbol. -
QUOTE_SYMBOL
The quote symbol. -
ESCAPE_SYMBOL
The escape symbol. -
EOL_SYMBOL
The eol symbol. -
EOL_SYMBOL_TRASH
The eol symbol trash. -
OTHER_SYMBOL
The other symbol. -
BOM_SYMBOL
The bom symbol. -
END_OF_FILE_SYMBOL
The end of file symbol. -
COMMENT_SYMBOL
The comment symbol.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
isCheckForSimilarEscapeAndQuote
public boolean isCheckForSimilarEscapeAndQuote()Checks if is check for similar escape and quote.- Returns:
- true, if is check for similar escape and quote
-
isTrash
public boolean isTrash()Checks if is trash.- Returns:
- true, if is trash
-