protected static enum PropsParser.ParseState extends java.lang.Enum<PropsParser.ParseState>
| Enum Constant and Description | 
|---|
COMMENT  | 
ESCAPE  | 
ESCAPE_NEWLINE  | 
TEXT  | 
VALUE  | 
| Modifier and Type | Method and Description | 
|---|---|
static PropsParser.ParseState | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PropsParser.ParseState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PropsParser.ParseState TEXT
public static final PropsParser.ParseState ESCAPE
public static final PropsParser.ParseState ESCAPE_NEWLINE
public static final PropsParser.ParseState COMMENT
public static final PropsParser.ParseState VALUE
public static PropsParser.ParseState[] values()
for (PropsParser.ParseState c : PropsParser.ParseState.values()) System.out.println(c);
public static PropsParser.ParseState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2003-present Jodd Team