public static enum QuotedPropertyParser.QuotedParseState extends Enum<QuotedPropertyParser.QuotedParseState>
Enum Constant and Description |
---|
IN_QUOTED_KEY |
IN_QUOTED_VALUE |
KEY |
VALUE |
Modifier and Type | Method and Description |
---|---|
static QuotedPropertyParser.QuotedParseState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuotedPropertyParser.QuotedParseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuotedPropertyParser.QuotedParseState KEY
public static final QuotedPropertyParser.QuotedParseState IN_QUOTED_KEY
public static final QuotedPropertyParser.QuotedParseState IN_QUOTED_VALUE
public static final QuotedPropertyParser.QuotedParseState VALUE
public static QuotedPropertyParser.QuotedParseState[] values()
for (QuotedPropertyParser.QuotedParseState c : QuotedPropertyParser.QuotedParseState.values()) System.out.println(c);
public static QuotedPropertyParser.QuotedParseState 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 © 2003–2015 The Apache Software Foundation. All rights reserved.