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