Package net.opengis.wcs10
Class InterpolationMethodType
Object
AbstractEnumerator
InterpolationMethodType
- All Implemented Interfaces:
Serializable
,Enumerator
public final class InterpolationMethodType
extends AbstractEnumerator
A representation of the literals of the enumeration 'Interpolation Method Type',
and utility methods for working with them.
Codes that identify interpolation methods. The meanings of these codes are defined in Annex B of ISO 19123: Geographic information Schema for coverage geometry and functions.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The 'Barycentric' literal value.static final InterpolationMethodType
The 'Barycentric' literal object.static final int
The 'Bicubic' literal value.static final InterpolationMethodType
The 'Bicubic' literal object.static final int
The 'Bilinear' literal value.static final InterpolationMethodType
The 'Bilinear' literal object.static final int
The 'Lost Area' literal value.static final InterpolationMethodType
The 'Lost Area' literal object.static final int
The 'Nearest Neighbor' literal value.static final InterpolationMethodType
The 'Nearest Neighbor' literal object.static final int
The 'None' literal value.static final InterpolationMethodType
The 'None' literal object.static final List
A public read-only list of all the 'Interpolation Method Type' enumerators. -
Method Summary
Modifier and TypeMethodDescriptionstatic InterpolationMethodType
get
(int value) Returns the 'Interpolation Method Type' literal with the specified integer value.static InterpolationMethodType
Returns the 'Interpolation Method Type' literal with the specified literal value.static InterpolationMethodType
Returns the 'Interpolation Method Type' literal with the specified name.Methods inherited from class AbstractEnumerator
getLiteral, getName, getValue, toString, writeReplace
-
Field Details
-
NEAREST_NEIGHBOR
public static final int NEAREST_NEIGHBORThe 'Nearest Neighbor' literal value.If the meaning of 'Nearest Neighbor' literal object isn't clear, there really should be more of a description here...
-
BILINEAR
public static final int BILINEARThe 'Bilinear' literal value.If the meaning of 'Bilinear' literal object isn't clear, there really should be more of a description here...
- See Also:
-
BICUBIC
public static final int BICUBICThe 'Bicubic' literal value.If the meaning of 'Bicubic' literal object isn't clear, there really should be more of a description here...
- See Also:
-
LOST_AREA
public static final int LOST_AREAThe 'Lost Area' literal value.If the meaning of 'Lost Area' literal object isn't clear, there really should be more of a description here...
- See Also:
-
BARYCENTRIC
public static final int BARYCENTRICThe 'Barycentric' literal value.If the meaning of 'Barycentric' literal object isn't clear, there really should be more of a description here...
- See Also:
-
NONE
public static final int NONEThe 'None' literal value. No interpolation.- See Also:
-
NEAREST_NEIGHBOR_LITERAL
The 'Nearest Neighbor' literal object.- See Also:
-
BILINEAR_LITERAL
The 'Bilinear' literal object.- See Also:
-
BICUBIC_LITERAL
The 'Bicubic' literal object.- See Also:
-
LOST_AREA_LITERAL
The 'Lost Area' literal object.- See Also:
-
BARYCENTRIC_LITERAL
The 'Barycentric' literal object.- See Also:
-
NONE_LITERAL
The 'None' literal object.- See Also:
-
VALUES
A public read-only list of all the 'Interpolation Method Type' enumerators.
-
-
Method Details
-
get
Returns the 'Interpolation Method Type' literal with the specified literal value. -
getByName
Returns the 'Interpolation Method Type' literal with the specified name. -
get
Returns the 'Interpolation Method Type' literal with the specified integer value.
-