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