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