Enum CurveInterpolationType

    • Field Detail

      • 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:
        LINEAR, Constant Field Values
      • 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:
        GEODESIC, Constant Field Values
      • 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_ARC3_POINTS, Constant Field Values
      • 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_ARC2_POINT_WITH_BULGE, Constant Field Values
      • 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:
        CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS, Constant Field Values
      • 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:
        ELLIPTICAL, Constant Field Values
      • 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:
        CLOTHOID, Constant Field Values
      • 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:
        CONIC, Constant Field Values
      • 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:
        POLYNOMIAL_SPLINE, Constant Field Values
      • 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:
        CUBIC_SPLINE, Constant Field Values
      • 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:
        RATIONAL_SPLINE, Constant Field Values
      • VALUES

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

      • values

        public static CurveInterpolationType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CurveInterpolationType c : CurveInterpolationType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CurveInterpolationType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type 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