Package com._1c.g5.v8.dt.chart.model
Enum StockChartUsedPointValue
- java.lang.Object
- 
- java.lang.Enum<StockChartUsedPointValue>
- 
- com._1c.g5.v8.dt.chart.model.StockChartUsedPointValue
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<StockChartUsedPointValue>,- org.eclipse.emf.common.util.Enumerator
 
 public enum StockChartUsedPointValue extends Enum<StockChartUsedPointValue> implements org.eclipse.emf.common.util.Enumerator A representation of the literals of the enumeration 'Stock Chart Used Point Value', and utility methods for working with them.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CLOSEThe 'Close' literal object.MAXThe 'Max' literal object.MINThe 'Min' literal object.OPENThe 'Open' literal object.OPEN_CLOSE_AVERAGEThe 'Open Close Average' literal object.
 - 
Field SummaryFields Modifier and Type Field Description static intCLOSE_VALUEThe 'Close' literal value.static intMAX_VALUEThe 'Max' literal value.static intMIN_VALUEThe 'Min' literal value.static intOPEN_CLOSE_AVERAGE_VALUEThe 'Open Close Average' literal value.static intOPEN_VALUEThe 'Open' literal value.static List<StockChartUsedPointValue>VALUESA public read-only list of all the 'Stock Chart Used Point Value' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StockChartUsedPointValueget(int value)Returns the 'Stock Chart Used Point Value' literal with the specified integer value.static StockChartUsedPointValueget(String literal)Returns the 'Stock Chart Used Point Value' literal with the specified literal value.static StockChartUsedPointValuegetByName(String name)Returns the 'Stock Chart Used Point Value' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static StockChartUsedPointValuevalueOf(String name)Returns the enum constant of this type with the specified name.static StockChartUsedPointValue[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
OPENpublic static final StockChartUsedPointValue OPEN The 'Open' literal object.- See Also:
- OPEN_VALUE
 
 - 
MAXpublic static final StockChartUsedPointValue MAX The 'Max' literal object.- See Also:
- MAX_VALUE
 
 - 
MINpublic static final StockChartUsedPointValue MIN The 'Min' literal object.- See Also:
- MIN_VALUE
 
 - 
CLOSEpublic static final StockChartUsedPointValue CLOSE The 'Close' literal object.- See Also:
- CLOSE_VALUE
 
 - 
OPEN_CLOSE_AVERAGEpublic static final StockChartUsedPointValue OPEN_CLOSE_AVERAGE The 'Open Close Average' literal object.- See Also:
- OPEN_CLOSE_AVERAGE_VALUE
 
 
- 
 - 
Field Detail- 
OPEN_VALUEpublic static final int OPEN_VALUE The 'Open' literal value.- See Also:
- OPEN, Constant Field Values
 
 - 
MAX_VALUEpublic static final int MAX_VALUE The 'Max' literal value.- See Also:
- MAX, Constant Field Values
 
 - 
MIN_VALUEpublic static final int MIN_VALUE The 'Min' literal value.- See Also:
- MIN, Constant Field Values
 
 - 
CLOSE_VALUEpublic static final int CLOSE_VALUE The 'Close' literal value.- See Also:
- CLOSE, Constant Field Values
 
 - 
OPEN_CLOSE_AVERAGE_VALUEpublic static final int OPEN_CLOSE_AVERAGE_VALUE The 'Open Close Average' literal value.- See Also:
- OPEN_CLOSE_AVERAGE, Constant Field Values
 
 - 
VALUESpublic static final List<StockChartUsedPointValue> VALUES A public read-only list of all the 'Stock Chart Used Point Value' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static StockChartUsedPointValue[] 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 (StockChartUsedPointValue c : StockChartUsedPointValue.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static StockChartUsedPointValue 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 StockChartUsedPointValue get(String literal) Returns the 'Stock Chart Used Point Value' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static StockChartUsedPointValue getByName(String name) Returns the 'Stock Chart Used Point Value' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static StockChartUsedPointValue get(int value) Returns the 'Stock Chart Used Point Value' 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<StockChartUsedPointValue>
 
 
- 
 
-