public static enum XMLPathPrinter.ElementType extends java.lang.Enum<XMLPathPrinter.ElementType>
Enum Constant and Description |
---|
ComplainIfNotPresent |
CreateIfNotPresent |
Optional |
Modifier and Type | Method and Description |
---|---|
static XMLPathPrinter.ElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XMLPathPrinter.ElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLPathPrinter.ElementType Optional
public static final XMLPathPrinter.ElementType CreateIfNotPresent
public static final XMLPathPrinter.ElementType ComplainIfNotPresent
public static XMLPathPrinter.ElementType[] values()
for (XMLPathPrinter.ElementType c : XMLPathPrinter.ElementType.values()) System.out.println(c);
public static XMLPathPrinter.ElementType 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