public static enum XNElement.XRepresentationState extends java.lang.Enum<XNElement.XRepresentationState>
| Enum Constant and Description |
|---|
END_ELEMENT
Element end.
|
END_TEXT
Text end.
|
START_ELEMENT
Element start.
|
START_TEXT
Text start.
|
| Modifier and Type | Method and Description |
|---|---|
static XNElement.XRepresentationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XNElement.XRepresentationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XNElement.XRepresentationState END_ELEMENT
public static final XNElement.XRepresentationState END_TEXT
public static final XNElement.XRepresentationState START_ELEMENT
public static final XNElement.XRepresentationState START_TEXT
public static XNElement.XRepresentationState[] values()
for (XNElement.XRepresentationState c : XNElement.XRepresentationState.values()) System.out.println(c);
public static XNElement.XRepresentationState 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 null