public enum LegType extends Enum<LegType>
| Enum Constant and Description |
|---|
ITERATE_OVER_ARRAY |
ITERATE_OVER_COLLECTION |
NORMAL |
RECURSE |
RETURN |
| Modifier and Type | Method and Description |
|---|---|
static LegType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LegType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegType NORMAL
public static final LegType ITERATE_OVER_ARRAY
public static final LegType ITERATE_OVER_COLLECTION
public static final LegType RECURSE
public static final LegType RETURN
public static LegType[] values()
for (LegType c : LegType.values()) System.out.println(c);
public static LegType 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 © 2010–2016 none. All rights reserved.