public enum MatrixOrder extends Enum<MatrixOrder>
Specifies the order for matrix transform operations.
| Enum Constant and Description |
|---|
Append
The new operation is applied after the old operation.
|
Prepend
The new operation is applied before the old operation.
|
| Modifier and Type | Method and Description |
|---|---|
static MatrixOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatrixOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatrixOrder Prepend
The new operation is applied before the old operation.
public static final MatrixOrder Append
The new operation is applied after the old operation.
public static MatrixOrder[] values()
for (MatrixOrder c : MatrixOrder.values()) System.out.println(c);
public static MatrixOrder 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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.