public static enum ImageServiceParameters.Interpolations extends java.lang.Enum<ImageServiceParameters.Interpolations>
Enum Constant and Description |
---|
INTERPOLATION_BILINEAR |
INTERPOLATION_CUBICCONVOLUTION |
INTERPOLATION_MAJORITY |
INTERPOLATION_NEARESTNEIGHBOR |
NOT_SET |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static ImageServiceParameters.Interpolations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageServiceParameters.Interpolations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageServiceParameters.Interpolations NOT_SET
public static final ImageServiceParameters.Interpolations INTERPOLATION_BILINEAR
public static final ImageServiceParameters.Interpolations INTERPOLATION_CUBICCONVOLUTION
public static final ImageServiceParameters.Interpolations INTERPOLATION_MAJORITY
public static final ImageServiceParameters.Interpolations INTERPOLATION_NEARESTNEIGHBOR
public static ImageServiceParameters.Interpolations[] values()
for (ImageServiceParameters.Interpolations c : ImageServiceParameters.Interpolations.values()) System.out.println(c);
public static ImageServiceParameters.Interpolations valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()