Enum Class CurveInterpolationType

Object
Enum<CurveInterpolationType>
CurveInterpolationType
All Implemented Interfaces:
Serializable, Comparable<CurveInterpolationType>, Constable, Enumerator

public enum CurveInterpolationType extends Enum<CurveInterpolationType> implements Enumerator
A representation of the literals of the enumeration 'Curve Interpolation Type', and utility methods for working with them. CurveInterpolationType is a list of codes that may be used to identify the interpolation mechanisms specified by an application schema.
See Also:
  • Enum Constant Details

  • Field Details

    • LINEAR_VALUE

      public static final int LINEAR_VALUE
      The 'Linear' literal value.

      If the meaning of 'Linear' literal object isn't clear, there really should be more of a description here...

      See Also:
    • GEODESIC_VALUE

      public static final int GEODESIC_VALUE
      The 'Geodesic' literal value.

      If the meaning of 'Geodesic' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CIRCULAR_ARC3_POINTS_VALUE

      public static final int CIRCULAR_ARC3_POINTS_VALUE
      The 'Circular Arc3 Points' literal value.

      If the meaning of 'Circular Arc3 Points' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CIRCULAR_ARC2_POINT_WITH_BULGE_VALUE

      public static final int CIRCULAR_ARC2_POINT_WITH_BULGE_VALUE
      The 'Circular Arc2 Point With Bulge' literal value.

      If the meaning of 'Circular Arc2 Point With Bulge' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS_VALUE

      public static final int CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS_VALUE
      The 'Circular Arc Center Point With Radius' literal value.

      If the meaning of 'Circular Arc Center Point With Radius' literal object isn't clear, there really should be more of a description here...

      See Also:
    • ELLIPTICAL_VALUE

      public static final int ELLIPTICAL_VALUE
      The 'Elliptical' literal value.

      If the meaning of 'Elliptical' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CLOTHOID_VALUE

      public static final int CLOTHOID_VALUE
      The 'Clothoid' literal value.

      If the meaning of 'Clothoid' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CONIC_VALUE

      public static final int CONIC_VALUE
      The 'Conic' literal value.

      If the meaning of 'Conic' literal object isn't clear, there really should be more of a description here...

      See Also:
    • POLYNOMIAL_SPLINE_VALUE

      public static final int POLYNOMIAL_SPLINE_VALUE
      The 'Polynomial Spline' literal value.

      If the meaning of 'Polynomial Spline' literal object isn't clear, there really should be more of a description here...

      See Also:
    • CUBIC_SPLINE_VALUE

      public static final int CUBIC_SPLINE_VALUE
      The 'Cubic Spline' literal value.

      If the meaning of 'Cubic Spline' literal object isn't clear, there really should be more of a description here...

      See Also:
    • RATIONAL_SPLINE_VALUE

      public static final int RATIONAL_SPLINE_VALUE
      The 'Rational Spline' literal value.

      If the meaning of 'Rational Spline' literal object isn't clear, there really should be more of a description here...

      See Also:
    • VALUES

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

    • values

      public static CurveInterpolationType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CurveInterpolationType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • get

      public static CurveInterpolationType get(String literal)
      Returns the 'Curve Interpolation Type' literal with the specified literal value.
      Parameters:
      literal - the literal.
      Returns:
      the matching enumerator or null.
    • getByName

      public static CurveInterpolationType getByName(String name)
      Returns the 'Curve Interpolation Type' literal with the specified name.
      Parameters:
      name - the name.
      Returns:
      the matching enumerator or null.
    • get

      public static CurveInterpolationType get(int value)
      Returns the 'Curve Interpolation Type' literal with the specified integer value.
      Parameters:
      value - the integer value.
      Returns:
      the matching enumerator or null.
    • getValue

      public int getValue()
      Specified by:
      getValue in interface Enumerator
    • getName

      public String getName()
      Specified by:
      getName in interface Enumerator
    • getLiteral

      public String getLiteral()
      Specified by:
      getLiteral in interface Enumerator
    • toString

      public String toString()
      Returns the literal value of the enumerator, which is its string representation.
      Overrides:
      toString in class Enum<CurveInterpolationType>