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