|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<WCSConstants.InterpolationMethod> org.deegree.protocol.wcs.WCSConstants.InterpolationMethod
public static enum WCSConstants.InterpolationMethod
The InterpolationMethod
class maps Interpolations to the wcs 1.0.0 protocol name.
Enum Constant Summary | |
---|---|
Barycentric
Interpolating barycentric. |
|
Bicubic
Interpolating bicubic. |
|
Bilinear
Interpolating bilinear. |
|
LostArea
Interpolating lost area. |
|
Nearest_Neighbor
Interpolating nearest neighbor. |
|
None
Not Interpolating. |
Method Summary | |
---|---|
InterpolationType |
asRasterAPIType()
|
String |
getProtocolName(Version version)
|
static WCSConstants.InterpolationMethod |
map(InterpolationType type)
|
static WCSConstants.InterpolationMethod |
map(String ip)
|
static WCSConstants.InterpolationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static WCSConstants.InterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final WCSConstants.InterpolationMethod Nearest_Neighbor
public static final WCSConstants.InterpolationMethod Bilinear
public static final WCSConstants.InterpolationMethod Bicubic
public static final WCSConstants.InterpolationMethod LostArea
public static final WCSConstants.InterpolationMethod Barycentric
public static final WCSConstants.InterpolationMethod None
Method Detail |
---|
public static WCSConstants.InterpolationMethod[] values()
for (WCSConstants.InterpolationMethod c : WCSConstants.InterpolationMethod.values()) System.out.println(c);
public static WCSConstants.InterpolationMethod valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getProtocolName(Version version)
version
- of the suspected protocol.
public static WCSConstants.InterpolationMethod map(String ip)
ip
-
public static WCSConstants.InterpolationMethod map(InterpolationType type)
type
-
InterpolationType
to the WCS WCSConstants.InterpolationMethod
.public InterpolationType asRasterAPIType()
null
if it the interpolation
method is not supported by the raster api.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |