public enum EnumMethodReturnType extends Enum<EnumMethodReturnType>
Enum Constant and Description |
---|
BEAN |
ITERATOR_BEAN |
ITERATOR_VALUE |
VALUE |
Modifier and Type | Method and Description |
---|---|
static EnumMethodReturnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumMethodReturnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumMethodReturnType ITERATOR_BEAN
public static final EnumMethodReturnType BEAN
public static final EnumMethodReturnType ITERATOR_VALUE
public static final EnumMethodReturnType VALUE
public static EnumMethodReturnType[] values()
for (EnumMethodReturnType c : EnumMethodReturnType.values()) System.out.println(c);
public static EnumMethodReturnType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2018. All rights reserved.