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
Fields Modifier and Type Field Description static int
BARYCENTRIC
The 'Barycentric' literal value.static InterpolationMethodType
BARYCENTRIC_LITERAL
The 'Barycentric' literal object.static int
BICUBIC
The 'Bicubic' literal value.static InterpolationMethodType
BICUBIC_LITERAL
The 'Bicubic' literal object.static int
BILINEAR
The 'Bilinear' literal value.static InterpolationMethodType
BILINEAR_LITERAL
The 'Bilinear' literal object.static int
LOST_AREA
The 'Lost Area' literal value.static InterpolationMethodType
LOST_AREA_LITERAL
The 'Lost Area' literal object.static int
NEAREST_NEIGHBOR
The 'Nearest Neighbor' literal value.static InterpolationMethodType
NEAREST_NEIGHBOR_LITERAL
The 'Nearest Neighbor' literal object.static int
NONE
The 'None' literal value.static InterpolationMethodType
NONE_LITERAL
The 'None' literal object.static List
VALUES
A public read-only list of all the 'Interpolation Method Type' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InterpolationMethodType
get(int value)
Returns the 'Interpolation Method Type' literal with the specified integer value.static InterpolationMethodType
get(String literal)
Returns the 'Interpolation Method Type' literal with the specified literal value.static InterpolationMethodType
getByName(String name)
Returns the 'Interpolation Method Type' literal with the specified name.
-
-
-
Field Detail
-
NEAREST_NEIGHBOR
public static final int NEAREST_NEIGHBOR
The 'Nearest Neighbor' literal value.If the meaning of 'Nearest Neighbor' literal object isn't clear, there really should be more of a description here...
- See Also:
NEAREST_NEIGHBOR_LITERAL
, Constant Field Values
-
BILINEAR
public static final int BILINEAR
The 'Bilinear' literal value.If the meaning of 'Bilinear' literal object isn't clear, there really should be more of a description here...
- See Also:
BILINEAR_LITERAL
, Constant Field Values
-
BICUBIC
public static final int BICUBIC
The 'Bicubic' literal value.If the meaning of 'Bicubic' literal object isn't clear, there really should be more of a description here...
- See Also:
BICUBIC_LITERAL
, Constant Field Values
-
LOST_AREA
public static final int LOST_AREA
The '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:
LOST_AREA_LITERAL
, Constant Field Values
-
BARYCENTRIC
public static final int BARYCENTRIC
The 'Barycentric' literal value.If the meaning of 'Barycentric' literal object isn't clear, there really should be more of a description here...
- See Also:
BARYCENTRIC_LITERAL
, Constant Field Values
-
NONE
public static final int NONE
The 'None' literal value. No interpolation.- See Also:
NONE_LITERAL
, Constant Field Values
-
NEAREST_NEIGHBOR_LITERAL
public static final InterpolationMethodType NEAREST_NEIGHBOR_LITERAL
The 'Nearest Neighbor' literal object.- See Also:
NEAREST_NEIGHBOR
-
BILINEAR_LITERAL
public static final InterpolationMethodType BILINEAR_LITERAL
The 'Bilinear' literal object.- See Also:
BILINEAR
-
BICUBIC_LITERAL
public static final InterpolationMethodType BICUBIC_LITERAL
The 'Bicubic' literal object.- See Also:
BICUBIC
-
LOST_AREA_LITERAL
public static final InterpolationMethodType LOST_AREA_LITERAL
The 'Lost Area' literal object.- See Also:
LOST_AREA
-
BARYCENTRIC_LITERAL
public static final InterpolationMethodType BARYCENTRIC_LITERAL
The 'Barycentric' literal object.- See Also:
BARYCENTRIC
-
NONE_LITERAL
public static final InterpolationMethodType NONE_LITERAL
The 'None' literal object.- See Also:
NONE
-
VALUES
public static final List VALUES
A public read-only list of all the 'Interpolation Method Type' enumerators.
-
-
Method Detail
-
get
public static InterpolationMethodType get(String literal)
Returns the 'Interpolation Method Type' literal with the specified literal value.
-
getByName
public static InterpolationMethodType getByName(String name)
Returns the 'Interpolation Method Type' literal with the specified name.
-
get
public static InterpolationMethodType get(int value)
Returns the 'Interpolation Method Type' literal with the specified integer value.
-
-