Package org.xcsp.common
Enum Types.TypeFlag
- java.lang.Object
-
- java.lang.Enum<Types.TypeFlag>
-
- org.xcsp.common.Types.TypeFlag
-
- All Implemented Interfaces:
Serializable
,Comparable<Types.TypeFlag>
- Enclosing class:
- Types
public static enum Types.TypeFlag extends Enum<Types.TypeFlag>
The enum type specifying the different flags that may be associated with some elements (e.g., constraints).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SMART_TUPLES
STARRED_TUPLES
UNCLEAN_TUPLES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Types.TypeFlag
valueOf(String name)
Returns the enum constant of this type with the specified name.static Types.TypeFlag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STARRED_TUPLES
public static final Types.TypeFlag STARRED_TUPLES
-
UNCLEAN_TUPLES
public static final Types.TypeFlag UNCLEAN_TUPLES
-
SMART_TUPLES
public static final Types.TypeFlag SMART_TUPLES
-
-
Method Detail
-
values
public static Types.TypeFlag[] 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 (Types.TypeFlag c : Types.TypeFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Types.TypeFlag 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
-
-