public enum State.Wrap


Summary

Enum Values

ALIGNED
CHAIN
NONE

Public fields

static Map<StringInteger>
static Map<StringState.Wrap>

Public methods

static State.Wrap

Get the Enum value with a String

static int

Get the actual int value with a String

static State.Wrap

Returns the enum constant of this type with the specified name.

static State.Wrap[]

Returns an array containing the constants of this enum type, in the order they're declared.

Public fields

valueMap

Added in 1.1.0-alpha13
public static Map<StringIntegervalueMap

wrapMap

Added in 1.1.0-alpha13
public static Map<StringState.WrapwrapMap

Public methods

getChainByString

Added in 1.1.0-alpha13
public static State.Wrap getChainByString(String str)

Get the Enum value with a String

Parameters
String str

a String representation of a Enum value

Returns
State.Wrap

a Enum value

getValueByString

Added in 1.1.0-alpha13
public static int getValueByString(String str)

Get the actual int value with a String

Parameters
String str

a String representation of a Enum value

Returns
int

a actual int value

valueOf

Added in 1.1.0-alpha13
public static State.Wrap 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.)

Returns
State.Wrap

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

Added in 1.1.0-alpha13
public static State.Wrap[] values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.

Returns
State.Wrap[]

an array containing the constants of this enum type, in the order they're declared