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.
See Also:
  • Field Details

    • 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:
    • 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:
    • 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:
    • 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:
    • 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:
    • NONE

      public static final int NONE
      The 'None' literal value. No interpolation.
      See Also:
    • NEAREST_NEIGHBOR_LITERAL

      public static final InterpolationMethodType NEAREST_NEIGHBOR_LITERAL
      The 'Nearest Neighbor' literal object.
      See Also:
    • BILINEAR_LITERAL

      public static final InterpolationMethodType BILINEAR_LITERAL
      The 'Bilinear' literal object.
      See Also:
    • BICUBIC_LITERAL

      public static final InterpolationMethodType BICUBIC_LITERAL
      The 'Bicubic' literal object.
      See Also:
    • LOST_AREA_LITERAL

      public static final InterpolationMethodType LOST_AREA_LITERAL
      The 'Lost Area' literal object.
      See Also:
    • BARYCENTRIC_LITERAL

      public static final InterpolationMethodType BARYCENTRIC_LITERAL
      The 'Barycentric' literal object.
      See Also:
    • NONE_LITERAL

      public static final InterpolationMethodType NONE_LITERAL
      The 'None' literal object.
      See Also:
    • VALUES

      public static final List VALUES
      A public read-only list of all the 'Interpolation Method Type' enumerators.
  • Method Details

    • 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.