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