Package org.ssclab.pl.milp
Enum SosGroup.TYPE_SOS_GROUP
- java.lang.Object
-
- java.lang.Enum<SosGroup.TYPE_SOS_GROUP>
-
- org.ssclab.pl.milp.SosGroup.TYPE_SOS_GROUP
-
- All Implemented Interfaces:
Serializable,Comparable<SosGroup.TYPE_SOS_GROUP>
- Enclosing class:
- SosGroup
public static enum SosGroup.TYPE_SOS_GROUP extends Enum<SosGroup.TYPE_SOS_GROUP>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SOS1SOS1_BINSOS1_BIN_FORCESOS1_INTSOS2SOS2_BINSOS2_BIN_FORCESOS2_INT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SosGroup.TYPE_SOS_GROUPvalueOf(String name)Returns the enum constant of this type with the specified name.static SosGroup.TYPE_SOS_GROUP[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOS1
public static final SosGroup.TYPE_SOS_GROUP SOS1
-
SOS1_BIN
public static final SosGroup.TYPE_SOS_GROUP SOS1_BIN
-
SOS1_BIN_FORCE
public static final SosGroup.TYPE_SOS_GROUP SOS1_BIN_FORCE
-
SOS1_INT
public static final SosGroup.TYPE_SOS_GROUP SOS1_INT
-
SOS2
public static final SosGroup.TYPE_SOS_GROUP SOS2
-
SOS2_BIN
public static final SosGroup.TYPE_SOS_GROUP SOS2_BIN
-
SOS2_BIN_FORCE
public static final SosGroup.TYPE_SOS_GROUP SOS2_BIN_FORCE
-
SOS2_INT
public static final SosGroup.TYPE_SOS_GROUP SOS2_INT
-
-
Method Detail
-
values
public static SosGroup.TYPE_SOS_GROUP[] 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 (SosGroup.TYPE_SOS_GROUP c : SosGroup.TYPE_SOS_GROUP.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SosGroup.TYPE_SOS_GROUP 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
-
-