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