public enum Flatten extends Enum<Flatten>
| Enum Constant and Description |
|---|
above |
all |
down_to_leave |
up_to_root |
| Modifier and Type | Method and Description |
|---|---|
static Flatten |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Flatten[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flatten above
public static final Flatten up_to_root
public static final Flatten down_to_leave
public static final Flatten all
public static Flatten[] values()
for (Flatten c : Flatten.values()) System.out.println(c);
public static Flatten 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-2013 JAXIO S.A.R.L. - All Rights Reserved.