protected static enum VProperty.State extends Enum<VProperty.State>
| Enum Constant and Description |
|---|
BACKSLASH |
KEY |
PARAM_NAME |
PARAM_VALUE |
QUOTED_PARAM_VALUE |
QUOTED_PARAM_VALUE_BACKSLASH |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static VProperty.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VProperty.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VProperty.State KEY
public static final VProperty.State PARAM_NAME
public static final VProperty.State PARAM_VALUE
public static final VProperty.State QUOTED_PARAM_VALUE
public static final VProperty.State QUOTED_PARAM_VALUE_BACKSLASH
public static final VProperty.State VALUE
public static final VProperty.State BACKSLASH
public static VProperty.State[] values()
for (VProperty.State c : VProperty.State.values()) System.out.println(c);
public static VProperty.State 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 © 2001–2025 MickaĆ«l Guessant. All rights reserved.