public enum ExtChildType extends Enum<ExtChildType>
| Enum Constant and Description |
|---|
CDATA
Content in CDATA format.
|
ELEMENT
Element.
|
PI
Processing Instruction.
|
TEXT
Content in normal format.
|
| Modifier and Type | Method and Description |
|---|---|
static ExtChildType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtChildType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtChildType ELEMENT
public static final ExtChildType CDATA
public static final ExtChildType TEXT
public static final ExtChildType PI
public static ExtChildType[] values()
for (ExtChildType c : ExtChildType.values()) System.out.println(c);
public static ExtChildType 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 © 2020. All rights reserved.