public enum EXERCISE extends Enum<EXERCISE>
| Enum Constant and Description |
|---|
BEAN_PROPERTIES |
EQUALS |
HASHCODE |
TO_STRING |
| Modifier and Type | Method and Description |
|---|---|
static EXERCISE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EXERCISE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EXERCISE EQUALS
public static final EXERCISE HASHCODE
public static final EXERCISE TO_STRING
public static final EXERCISE BEAN_PROPERTIES
public static EXERCISE[] values()
for (EXERCISE c : EXERCISE.values()) System.out.println(c);
public static EXERCISE 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 © 2008–2015. All rights reserved.