Package com.adobe.xmp.schema.rng.model
Enum ParamInfoGroup.Operator
- java.lang.Object
-
- java.lang.Enum<ParamInfoGroup.Operator>
-
- com.adobe.xmp.schema.rng.model.ParamInfoGroup.Operator
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ParamInfoGroup.Operator>
- Enclosing class:
- ParamInfoGroup
public static enum ParamInfoGroup.Operator extends java.lang.Enum<ParamInfoGroup.Operator>
Operator to define relatioship between constraints defined by a stack ofParamInfo
objects
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParamInfoGroup.Operator
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ParamInfoGroup.Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
kOR
public static final ParamInfoGroup.Operator kOR
or operator
-
kAND
public static final ParamInfoGroup.Operator kAND
and operator
-
-
Method Detail
-
values
public static ParamInfoGroup.Operator[] 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 (ParamInfoGroup.Operator c : ParamInfoGroup.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParamInfoGroup.Operator 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
-
-