Package com.fourjs.report.facturx
Enum XMLPathPrinter.ElementType
- java.lang.Object
-
- java.lang.Enum<XMLPathPrinter.ElementType>
-
- com.fourjs.report.facturx.XMLPathPrinter.ElementType
-
- All Implemented Interfaces:
Serializable
,Comparable<XMLPathPrinter.ElementType>
- Enclosing class:
- XMLPathPrinter
public static enum XMLPathPrinter.ElementType extends Enum<XMLPathPrinter.ElementType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ComplainIfNotPresent
CreateIfNotPresent
Optional
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XMLPathPrinter.ElementType
valueOf(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.
-
-
-
Enum Constant Detail
-
Optional
public static final XMLPathPrinter.ElementType Optional
-
CreateIfNotPresent
public static final XMLPathPrinter.ElementType CreateIfNotPresent
-
ComplainIfNotPresent
public static final XMLPathPrinter.ElementType ComplainIfNotPresent
-
-
Method Detail
-
values
public static XMLPathPrinter.ElementType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (XMLPathPrinter.ElementType c : XMLPathPrinter.ElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XMLPathPrinter.ElementType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-