public static enum Constraint.DeferrableState extends java.lang.Enum<Constraint.DeferrableState>
Enum Constant and Description |
---|
DEFER_INIT_DEFERRED |
DEFER_INIT_IMMEDIATE |
Modifier and Type | Method and Description |
---|---|
static Constraint.DeferrableState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constraint.DeferrableState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constraint.DeferrableState DEFER_INIT_IMMEDIATE
public static final Constraint.DeferrableState DEFER_INIT_DEFERRED
public static Constraint.DeferrableState[] values()
for (Constraint.DeferrableState c : Constraint.DeferrableState.values()) System.out.println(c);
public static Constraint.DeferrableState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null