Package com._1c.g5.v8.dt.bp.scheme.model
Enum GraphicalSchemeGridDrawMode
- java.lang.Object
- 
- java.lang.Enum<GraphicalSchemeGridDrawMode>
- 
- com._1c.g5.v8.dt.bp.scheme.model.GraphicalSchemeGridDrawMode
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<GraphicalSchemeGridDrawMode>,- org.eclipse.emf.common.util.Enumerator
 
 public enum GraphicalSchemeGridDrawMode extends Enum<GraphicalSchemeGridDrawMode> implements org.eclipse.emf.common.util.Enumerator A representation of the literals of the enumeration 'Graphical Scheme Grid Draw Mode', and utility methods for working with them.
- 
- 
Field SummaryFields Modifier and Type Field Description static intCHESS_VALUEThe 'Chess' literal value.static intDOTS_VALUEThe 'Dots' literal value.static intLINES_VALUEThe 'Lines' literal value.static intNONE_VALUEThe 'None' literal value.static List<GraphicalSchemeGridDrawMode>VALUESA public read-only list of all the 'Graphical Scheme Grid Draw Mode' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GraphicalSchemeGridDrawModeget(int value)Returns the 'Graphical Scheme Grid Draw Mode' literal with the specified integer value.static GraphicalSchemeGridDrawModeget(String literal)Returns the 'Graphical Scheme Grid Draw Mode' literal with the specified literal value.static GraphicalSchemeGridDrawModegetByName(String name)Returns the 'Graphical Scheme Grid Draw Mode' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static GraphicalSchemeGridDrawModevalueOf(String name)Returns the enum constant of this type with the specified name.static GraphicalSchemeGridDrawMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final GraphicalSchemeGridDrawMode NONE The 'None' literal object.- See Also:
- NONE_VALUE
 
 - 
DOTSpublic static final GraphicalSchemeGridDrawMode DOTS The 'Dots' literal object.- See Also:
- DOTS_VALUE
 
 - 
CHESSpublic static final GraphicalSchemeGridDrawMode CHESS The 'Chess' literal object.- See Also:
- CHESS_VALUE
 
 - 
LINESpublic static final GraphicalSchemeGridDrawMode LINES The 'Lines' literal object.- See Also:
- LINES_VALUE
 
 
- 
 - 
Field Detail- 
NONE_VALUEpublic static final int NONE_VALUE The 'None' literal value.- See Also:
- NONE, Constant Field Values
 
 - 
DOTS_VALUEpublic static final int DOTS_VALUE The 'Dots' literal value.- See Also:
- DOTS, Constant Field Values
 
 - 
CHESS_VALUEpublic static final int CHESS_VALUE The 'Chess' literal value.- See Also:
- CHESS, Constant Field Values
 
 - 
LINES_VALUEpublic static final int LINES_VALUE The 'Lines' literal value.- See Also:
- LINES, Constant Field Values
 
 - 
VALUESpublic static final List<GraphicalSchemeGridDrawMode> VALUES A public read-only list of all the 'Graphical Scheme Grid Draw Mode' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static GraphicalSchemeGridDrawMode[] 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 (GraphicalSchemeGridDrawMode c : GraphicalSchemeGridDrawMode.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static GraphicalSchemeGridDrawMode 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 GraphicalSchemeGridDrawMode get(String literal) Returns the 'Graphical Scheme Grid Draw Mode' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static GraphicalSchemeGridDrawMode getByName(String name) Returns the 'Graphical Scheme Grid Draw Mode' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static GraphicalSchemeGridDrawMode get(int value) Returns the 'Graphical Scheme Grid Draw 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<GraphicalSchemeGridDrawMode>
 
 
- 
 
-