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