Enum InputFieldValue
- java.lang.Object
-
- java.lang.Enum<InputFieldValue>
-
- org.openprovenance.prov.template.descriptors.InputFieldValue
-
- All Implemented Interfaces:
Serializable,Comparable<InputFieldValue>,java.lang.constant.Constable
public enum InputFieldValue extends Enum<InputFieldValue>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CompulsoryFalseOptional
-
Method Summary
Modifier and Type Method Description static InputFieldValueforValue(String value)static booleanisCompulsoryInput(InputFieldValue inputFieldValue)static booleanisInput(InputFieldValue inputFieldValue)StringtoValue()static InputFieldValuevalueOf(String name)Returns the enum constant of this type with the specified name.static InputFieldValue[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Compulsory
public static final InputFieldValue Compulsory
-
Optional
public static final InputFieldValue Optional
-
False
public static final InputFieldValue False
-
-
Method Detail
-
values
public static InputFieldValue[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InputFieldValue 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
-
forValue
public static InputFieldValue forValue(String value)
-
toValue
public String toValue()
-
isInput
public static boolean isInput(InputFieldValue inputFieldValue)
-
isCompulsoryInput
public static boolean isCompulsoryInput(InputFieldValue inputFieldValue)
-
-