Enum NodeDefinitionFormObject.RelevanceType
- java.lang.Object
-
- java.lang.Enum<NodeDefinitionFormObject.RelevanceType>
-
- org.openforis.collect.designer.form.NodeDefinitionFormObject.RelevanceType
-
- All Implemented Interfaces:
Serializable,Comparable<NodeDefinitionFormObject.RelevanceType>
- Enclosing class:
- NodeDefinitionFormObject<T extends NodeDefinition>
public static enum NodeDefinitionFormObject.RelevanceType extends Enum<NodeDefinitionFormObject.RelevanceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYS_RELEVANTRELEVANT_WHEN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeDefinitionFormObject.RelevanceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static NodeDefinitionFormObject.RelevanceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALWAYS_RELEVANT
public static final NodeDefinitionFormObject.RelevanceType ALWAYS_RELEVANT
-
RELEVANT_WHEN
public static final NodeDefinitionFormObject.RelevanceType RELEVANT_WHEN
-
-
Method Detail
-
values
public static NodeDefinitionFormObject.RelevanceType[] 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 (NodeDefinitionFormObject.RelevanceType c : NodeDefinitionFormObject.RelevanceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeDefinitionFormObject.RelevanceType 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
-
-