Enum Container.ValidationState
- java.lang.Object
-
- java.lang.Enum<Container.ValidationState>
-
- com.adobe.xfa.template.containers.Container.ValidationState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Container.ValidationState>
- Enclosing class:
- Container
public static enum Container.ValidationState extends java.lang.Enum<Container.ValidationState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description VALIDATIONSTATE_BARCODETEST
VALIDATIONSTATE_FORMATTEST
VALIDATIONSTATE_NULLTEST
VALIDATIONSTATE_SCRIPTTEST
VALIDATIONSTATE_VALID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Container.ValidationState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Container.ValidationState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALIDATIONSTATE_VALID
public static final Container.ValidationState VALIDATIONSTATE_VALID
-
VALIDATIONSTATE_BARCODETEST
public static final Container.ValidationState VALIDATIONSTATE_BARCODETEST
-
VALIDATIONSTATE_NULLTEST
public static final Container.ValidationState VALIDATIONSTATE_NULLTEST
-
VALIDATIONSTATE_SCRIPTTEST
public static final Container.ValidationState VALIDATIONSTATE_SCRIPTTEST
-
VALIDATIONSTATE_FORMATTEST
public static final Container.ValidationState VALIDATIONSTATE_FORMATTEST
-
-
Method Detail
-
values
public static Container.ValidationState[] 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 (Container.ValidationState c : Container.ValidationState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Container.ValidationState valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-