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 SummaryEnum Constants Enum Constant Description SPLINE_BOUNDThe 'Spline Bound' literal object.SPLINE_NONEThe 'Spline None' literal object.
 - 
Field SummaryFields 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 SummaryAll 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_NONEpublic static final EnSplineMode SPLINE_NONE The 'Spline None' literal object.- See Also:
- SPLINE_NONE_VALUE
 
 - 
SPLINE_BOUNDpublic static final EnSplineMode SPLINE_BOUND The 'Spline Bound' literal object.- See Also:
- SPLINE_BOUND_VALUE
 
 
- 
 - 
Field Detail- 
SPLINE_NONE_VALUEpublic static final int SPLINE_NONE_VALUE The 'Spline None' literal value.- See Also:
- SPLINE_NONE, Constant Field Values
 
 - 
SPLINE_BOUND_VALUEpublic static final int SPLINE_BOUND_VALUE The 'Spline Bound' literal value.- See Also:
- SPLINE_BOUND, Constant Field Values
 
 - 
VALUESpublic static final List<EnSplineMode> VALUES A public read-only list of all the 'En Spline Mode' enumerators.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getpublic 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.
 
 - 
getByNamepublic 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.
 
 - 
getpublic 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.
 
 - 
getValuepublic int getValue() - Specified by:
- getValuein interface- org.eclipse.emf.common.util.Enumerator
 
 - 
getNamepublic String getName() - Specified by:
- getNamein interface- org.eclipse.emf.common.util.Enumerator
 
 - 
getLiteralpublic String getLiteral() - Specified by:
- getLiteralin interface- org.eclipse.emf.common.util.Enumerator
 
 - 
toStringpublic String toString() Returns the literal value of the enumerator, which is its string representation.- Overrides:
- toStringin class- Enum<EnSplineMode>
 
 
- 
 
-