Package net.opengis.wcs10
Class InterpolationMethodType
- Object
-
- AbstractEnumerator
-
- InterpolationMethodType
-
- All Implemented Interfaces:
Serializable,Enumerator
public final class InterpolationMethodType extends AbstractEnumeratorA 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 intBARYCENTRICThe 'Barycentric' literal value.static InterpolationMethodTypeBARYCENTRIC_LITERALThe 'Barycentric' literal object.static intBICUBICThe 'Bicubic' literal value.static InterpolationMethodTypeBICUBIC_LITERALThe 'Bicubic' literal object.static intBILINEARThe 'Bilinear' literal value.static InterpolationMethodTypeBILINEAR_LITERALThe 'Bilinear' literal object.static intLOST_AREAThe 'Lost Area' literal value.static InterpolationMethodTypeLOST_AREA_LITERALThe 'Lost Area' literal object.static intNEAREST_NEIGHBORThe 'Nearest Neighbor' literal value.static InterpolationMethodTypeNEAREST_NEIGHBOR_LITERALThe 'Nearest Neighbor' literal object.static intNONEThe 'None' literal value.static InterpolationMethodTypeNONE_LITERALThe 'None' literal object.static ListVALUESA 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 InterpolationMethodTypeget(int value)Returns the 'Interpolation Method Type' literal with the specified integer value.static InterpolationMethodTypeget(String literal)Returns the 'Interpolation Method Type' literal with the specified literal value.static InterpolationMethodTypegetByName(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.
-
-