public enum CoercionStrategy extends java.lang.Enum<CoercionStrategy>
| Enum Constant and Description |
|---|
COERCION_TO_UNIT |
NO_COERCION |
| Modifier and Type | Method and Description |
|---|---|
static CoercionStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CoercionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoercionStrategy NO_COERCION
public static final CoercionStrategy COERCION_TO_UNIT
public static CoercionStrategy[] values()
for (CoercionStrategy c : CoercionStrategy.values()) System.out.println(c);
public static CoercionStrategy 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