Enum FixedTokenDefinition
- java.lang.Object
-
- java.lang.Enum<FixedTokenDefinition>
-
- com.github.fridujo.glacio.parsing.lexer.FixedTokenDefinition
-
- All Implemented Interfaces:
Serializable,Comparable<FixedTokenDefinition>
public enum FixedTokenDefinition extends Enum<FixedTokenDefinition>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLONCOMMENT_DELIMITERDOC_STRING_DELIMITEREOLTABLE_DELIMITERTAG_DELIMITER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLiteralString()chargetSingleCharacter()TokenTypegetType()static FixedTokenDefinitionvalueOf(String name)Returns the enum constant of this type with the specified name.static FixedTokenDefinition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EOL
public static final FixedTokenDefinition EOL
-
COLON
public static final FixedTokenDefinition COLON
-
TAG_DELIMITER
public static final FixedTokenDefinition TAG_DELIMITER
-
COMMENT_DELIMITER
public static final FixedTokenDefinition COMMENT_DELIMITER
-
TABLE_DELIMITER
public static final FixedTokenDefinition TABLE_DELIMITER
-
DOC_STRING_DELIMITER
public static final FixedTokenDefinition DOC_STRING_DELIMITER
-
-
Method Detail
-
values
public static FixedTokenDefinition[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FixedTokenDefinition c : FixedTokenDefinition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FixedTokenDefinition valueOf(String name)
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
-
getType
public TokenType getType()
-
getSingleCharacter
public char getSingleCharacter()
-
getLiteralString
public String getLiteralString()
-
-