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