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