Package com.adobe.xfa.form
Enum FormModel.DatasetSelector
- java.lang.Object
-
- java.lang.Enum<FormModel.DatasetSelector>
-
- com.adobe.xfa.form.FormModel.DatasetSelector
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FormModel.DatasetSelector>
- Enclosing class:
- FormModel
public static enum FormModel.DatasetSelector extends java.lang.Enum<FormModel.DatasetSelector>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALT_DATASET
MAIN_DATASET
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FormModel.DatasetSelector
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FormModel.DatasetSelector[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAIN_DATASET
public static final FormModel.DatasetSelector MAIN_DATASET
-
ALT_DATASET
public static final FormModel.DatasetSelector ALT_DATASET
-
-
Method Detail
-
values
public static FormModel.DatasetSelector[] 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 (FormModel.DatasetSelector c : FormModel.DatasetSelector.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FormModel.DatasetSelector 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
-
-