Package com._1c.g5.v8.dt.chart.model
Enum EnSplineMode
- java.lang.Object
-
- java.lang.Enum<EnSplineMode>
-
- com._1c.g5.v8.dt.chart.model.EnSplineMode
-
- All Implemented Interfaces:
Serializable,Comparable<EnSplineMode>,org.eclipse.emf.common.util.Enumerator
public enum EnSplineMode extends Enum<EnSplineMode> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'En Spline Mode', and utility methods for working with them.- See Also:
ChartPackage.getEnSplineMode()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SPLINE_BOUNDThe 'Spline Bound' literal object.SPLINE_NONEThe 'Spline None' literal object.
-
Field Summary
Fields Modifier and Type Field Description static intSPLINE_BOUND_VALUEThe 'Spline Bound' literal value.static intSPLINE_NONE_VALUEThe 'Spline None' literal value.static List<EnSplineMode>VALUESA public read-only list of all the 'En Spline Mode' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EnSplineModeget(int value)Returns the 'En Spline Mode' literal with the specified integer value.static EnSplineModeget(String literal)Returns the 'En Spline Mode' literal with the specified literal value.static EnSplineModegetByName(String name)Returns the 'En Spline Mode' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static EnSplineModevalueOf(String name)Returns the enum constant of this type with the specified name.static EnSplineMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPLINE_NONE
public static final EnSplineMode SPLINE_NONE
The 'Spline None' literal object.- See Also:
SPLINE_NONE_VALUE
-
SPLINE_BOUND
public static final EnSplineMode SPLINE_BOUND
The 'Spline Bound' literal object.- See Also:
SPLINE_BOUND_VALUE
-
-
Field Detail
-
SPLINE_NONE_VALUE
public static final int SPLINE_NONE_VALUE
The 'Spline None' literal value.- See Also:
SPLINE_NONE, Constant Field Values
-
SPLINE_BOUND_VALUE
public static final int SPLINE_BOUND_VALUE
The 'Spline Bound' literal value.- See Also:
SPLINE_BOUND, Constant Field Values
-
VALUES
public static final List<EnSplineMode> VALUES
A public read-only list of all the 'En Spline Mode' enumerators.
-
-
Method Detail
-
values
public static EnSplineMode[] 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 (EnSplineMode c : EnSplineMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnSplineMode 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 nameNullPointerException- if the argument is null
-
get
public static EnSplineMode get(String literal)
Returns the 'En Spline Mode' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null.
-
getByName
public static EnSplineMode getByName(String name)
Returns the 'En Spline Mode' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null.
-
get
public static EnSplineMode get(int value)
Returns the 'En Spline Mode' literal with the specified integer value.- Parameters:
value- the integer value.- Returns:
- the matching enumerator or
null.
-
getValue
public int getValue()
- Specified by:
getValuein interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
public String getName()
- Specified by:
getNamein interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteralin interfaceorg.eclipse.emf.common.util.Enumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toStringin classEnum<EnSplineMode>
-
-