public enum ConstraintType extends java.lang.Enum<ConstraintType>
约束类型枚举
枚举常量和说明 |
---|
HARDCONSTRAINT
硬约束
|
SOFTCONSTRAINT
软约束
|
限定符和类型 | 方法和说明 |
---|---|
static ConstraintType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static ConstraintType[] |
values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
|
public static final ConstraintType SOFTCONSTRAINT
public static final ConstraintType HARDCONSTRAINT
public static ConstraintType[] values()
for (ConstraintType c : ConstraintType.values()) System.out.println(c);
public static ConstraintType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。