public enum AllGrow extends Enum<AllGrow> implements AppParentConstraint
| Enum Constant and Description |
|---|
BOTH |
HORIZONTAL |
NONE |
VERTICAL |
| Modifier and Type | Method and Description |
|---|---|
static AllGrow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AllGrow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllGrow NONE
public static final AllGrow VERTICAL
public static final AllGrow HORIZONTAL
public static final AllGrow BOTH
public static AllGrow[] values()
for (AllGrow c : AllGrow.values()) System.out.println(c);
public static AllGrow 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 © 2021 vpc open source initiative. All rights reserved.