enum PropertiesTokenType extends Enum<PropertiesTokenType>
| Enum Constant and Description |
|---|
COMMENT |
EOF |
KEY |
LOGICAL_LINE_BREAK |
META_DATA |
NATURAL_LINE_BREAK |
SEPARATOR |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static PropertiesTokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertiesTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertiesTokenType META_DATA
public static final PropertiesTokenType NATURAL_LINE_BREAK
public static final PropertiesTokenType LOGICAL_LINE_BREAK
public static final PropertiesTokenType KEY
public static final PropertiesTokenType SEPARATOR
public static final PropertiesTokenType VALUE
public static final PropertiesTokenType COMMENT
public static final PropertiesTokenType EOF
public static PropertiesTokenType[] values()
for (PropertiesTokenType c : PropertiesTokenType.values()) System.out.println(c);
public static PropertiesTokenType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2016 David R. Smith. All rights reserved.