Uses of Enum
org.csveed.token.EncounteredSymbol
Packages that use EncounteredSymbol
Package
Description
The package responsible for reading a CSV line from a
Reader
and converting this to tokens.-
Uses of EncounteredSymbol in org.csveed.token
Methods in org.csveed.token that return EncounteredSymbolModifier and TypeMethodDescriptionSymbolMapping.find
(int character, ParseState parseState) Find.ParseException.getSymbol()
Gets the symbol.static EncounteredSymbol
Returns the enum constant of this type with the specified name.static EncounteredSymbol[]
EncounteredSymbol.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.csveed.token with parameters of type EncounteredSymbolModifier and TypeMethodDescriptionvoid
SymbolMapping.addMapping
(EncounteredSymbol symbol, char[] characters) Adds the mapping.void
SymbolMapping.addMapping
(EncounteredSymbol symbol, Character character) Adds the mapping.protected ParseState
ParseStateMachine.determineState
(int symbolCharacter, EncounteredSymbol symbol) Determine state.char
SymbolMapping.getFirstMappedCharacter
(EncounteredSymbol encounteredSymbol) Gets the first mapped character.char[]
SymbolMapping.getMappedCharacters
(EncounteredSymbol encounteredSymbol) Gets the mapped characters.Constructors in org.csveed.token with parameters of type EncounteredSymbolModifierConstructorDescriptionParseException
(ParseState state, int symbolCharacter, EncounteredSymbol symbol) Instantiates a new parses the exception.