Enum GanttChartIntervalRepresentation
- java.lang.Object
- 
- java.lang.Enum<GanttChartIntervalRepresentation>
- 
- com._1c.g5.v8.dt.ganttchart.model.GanttChartIntervalRepresentation
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<GanttChartIntervalRepresentation>,- org.eclipse.emf.common.util.Enumerator
 
 public enum GanttChartIntervalRepresentation extends Enum<GanttChartIntervalRepresentation> implements org.eclipse.emf.common.util.Enumerator A representation of the literals of the enumeration 'Interval Representation', and utility methods for working with them.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FLATThe 'Flat' literal object.GRADIENTThe 'Gradient' literal object.RHOMBThe 'Rhomb' literal object.THREE_DIMENSIONALThe 'Three Dimensional' literal object.
 - 
Field SummaryFields Modifier and Type Field Description static intFLAT_VALUEThe 'Flat' literal value.static intGRADIENT_VALUEThe 'Gradient' literal value.static intRHOMB_VALUEThe 'Rhomb' literal value.static intTHREE_DIMENSIONAL_VALUEThe 'Three Dimensional' literal value.static List<GanttChartIntervalRepresentation>VALUESA public read-only list of all the 'Interval Representation' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GanttChartIntervalRepresentationget(int value)Returns the 'Interval Representation' literal with the specified integer value.static GanttChartIntervalRepresentationget(String literal)Returns the 'Interval Representation' literal with the specified literal value.static GanttChartIntervalRepresentationgetByName(String name)Returns the 'Interval Representation' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static GanttChartIntervalRepresentationvalueOf(String name)Returns the enum constant of this type with the specified name.static GanttChartIntervalRepresentation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
FLATpublic static final GanttChartIntervalRepresentation FLAT The 'Flat' literal object.- See Also:
- FLAT_VALUE
 
 - 
THREE_DIMENSIONALpublic static final GanttChartIntervalRepresentation THREE_DIMENSIONAL The 'Three Dimensional' literal object.- See Also:
- THREE_DIMENSIONAL_VALUE
 
 - 
RHOMBpublic static final GanttChartIntervalRepresentation RHOMB The 'Rhomb' literal object.- See Also:
- RHOMB_VALUE
 
 - 
GRADIENTpublic static final GanttChartIntervalRepresentation GRADIENT The 'Gradient' literal object.- See Also:
- GRADIENT_VALUE
 
 
- 
 - 
Field Detail- 
FLAT_VALUEpublic static final int FLAT_VALUE The 'Flat' literal value.- See Also:
- FLAT, Constant Field Values
 
 - 
THREE_DIMENSIONAL_VALUEpublic static final int THREE_DIMENSIONAL_VALUE The 'Three Dimensional' literal value.- See Also:
- THREE_DIMENSIONAL, Constant Field Values
 
 - 
RHOMB_VALUEpublic static final int RHOMB_VALUE The 'Rhomb' literal value.- See Also:
- RHOMB, Constant Field Values
 
 - 
GRADIENT_VALUEpublic static final int GRADIENT_VALUE The 'Gradient' literal value.- See Also:
- GRADIENT, Constant Field Values
 
 - 
VALUESpublic static final List<GanttChartIntervalRepresentation> VALUES A public read-only list of all the 'Interval Representation' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static GanttChartIntervalRepresentation[] 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 (GanttChartIntervalRepresentation c : GanttChartIntervalRepresentation.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static GanttChartIntervalRepresentation 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 GanttChartIntervalRepresentation get(String literal) Returns the 'Interval Representation' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static GanttChartIntervalRepresentation getByName(String name) Returns the 'Interval Representation' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static GanttChartIntervalRepresentation get(int value) Returns the 'Interval Representation' 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<GanttChartIntervalRepresentation>
 
 
- 
 
-