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