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