Package org.xcsp.common.predicates
Enum MatcherInterface.AbstractOperation
- java.lang.Object
-
- java.lang.Enum<MatcherInterface.AbstractOperation>
-
- org.xcsp.common.predicates.MatcherInterface.AbstractOperation
-
- All Implemented Interfaces:
Serializable
,Comparable<MatcherInterface.AbstractOperation>
- Enclosing interface:
- MatcherInterface
public static enum MatcherInterface.AbstractOperation extends Enum<MatcherInterface.AbstractOperation>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MatcherInterface.AbstractOperation
valueOf(String name)
Returns the enum constant of this type with the specified name.static MatcherInterface.AbstractOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ariop
public static final MatcherInterface.AbstractOperation ariop
-
relop
public static final MatcherInterface.AbstractOperation relop
-
setop
public static final MatcherInterface.AbstractOperation setop
-
unalop
public static final MatcherInterface.AbstractOperation unalop
-
symop
public static final MatcherInterface.AbstractOperation symop
-
-
Method Detail
-
values
public static MatcherInterface.AbstractOperation[] 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 (MatcherInterface.AbstractOperation c : MatcherInterface.AbstractOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MatcherInterface.AbstractOperation 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
-
-