public static enum Matrix.IterationMode extends Enum<Matrix.IterationMode>
Enum Constant and Description |
---|
BOTTOM_LEFT |
BOTTOM_RIGHT |
TOP_LEFT |
TOP_RIGHT |
Modifier and Type | Method and Description |
---|---|
static Matrix.IterationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Matrix.IterationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Matrix.IterationMode TOP_LEFT
public static final Matrix.IterationMode TOP_RIGHT
public static final Matrix.IterationMode BOTTOM_LEFT
public static final Matrix.IterationMode BOTTOM_RIGHT
public static Matrix.IterationMode[] values()
for (Matrix.IterationMode c : Matrix.IterationMode.values()) System.out.println(c);
public static Matrix.IterationMode 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 © 2003–2021 XDEV Software. All rights reserved.