Enum LayerSeriesShowMode
- java.lang.Object
-
- java.lang.Enum<LayerSeriesShowMode>
-
- com._1c.g5.v8.dt.geographicalschema.model.LayerSeriesShowMode
-
- All Implemented Interfaces:
Serializable
,Comparable<LayerSeriesShowMode>
,org.eclipse.emf.common.util.Enumerator
public enum LayerSeriesShowMode extends Enum<LayerSeriesShowMode> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Layer Series Show Mode', and utility methods for working with them.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN
The 'Column' literal object.DONT_SHOW
The 'Dont Show' literal object.PICTURE
The 'Picture' literal object.PIE
The 'Pie' literal object.SHAPE_COLOR
The 'Shape Color' literal object.SHAPE_COLOR_HUE
The 'Shape Color Hue' literal object.SHAPE_SIZE
The 'Shape Size' literal object.SIZED_PIE
The 'Sized Pie' literal object.TEXT
The 'Text' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
COLUMN_VALUE
The 'Column' literal value.static int
DONT_SHOW_VALUE
The 'Dont Show' literal value.static int
PICTURE_VALUE
The 'Picture' literal value.static int
PIE_VALUE
The 'Pie' literal value.static int
SHAPE_COLOR_HUE_VALUE
The 'Shape Color Hue' literal value.static int
SHAPE_COLOR_VALUE
The 'Shape Color' literal value.static int
SHAPE_SIZE_VALUE
The 'Shape Size' literal value.static int
SIZED_PIE_VALUE
The 'Sized Pie' literal value.static int
TEXT_VALUE
The 'Text' literal value.static List<LayerSeriesShowMode>
VALUES
A public read-only list of all the 'Layer Series Show Mode' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LayerSeriesShowMode
get(int value)
Returns the 'Layer Series Show Mode' literal with the specified integer value.static LayerSeriesShowMode
get(String literal)
Returns the 'Layer Series Show Mode' literal with the specified literal value.static LayerSeriesShowMode
getByName(String name)
Returns the 'Layer Series Show Mode' literal with the specified name.String
getLiteral()
String
getName()
int
getValue()
String
toString()
Returns the literal value of the enumerator, which is its string representation.static LayerSeriesShowMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static LayerSeriesShowMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DONT_SHOW
public static final LayerSeriesShowMode DONT_SHOW
The 'Dont Show' literal object.- See Also:
DONT_SHOW_VALUE
-
TEXT
public static final LayerSeriesShowMode TEXT
The 'Text' literal object.- See Also:
TEXT_VALUE
-
COLUMN
public static final LayerSeriesShowMode COLUMN
The 'Column' literal object.- See Also:
COLUMN_VALUE
-
SHAPE_SIZE
public static final LayerSeriesShowMode SHAPE_SIZE
The 'Shape Size' literal object.- See Also:
SHAPE_SIZE_VALUE
-
SHAPE_COLOR
public static final LayerSeriesShowMode SHAPE_COLOR
The 'Shape Color' literal object.- See Also:
SHAPE_COLOR_VALUE
-
SHAPE_COLOR_HUE
public static final LayerSeriesShowMode SHAPE_COLOR_HUE
The 'Shape Color Hue' literal object.- See Also:
SHAPE_COLOR_HUE_VALUE
-
PICTURE
public static final LayerSeriesShowMode PICTURE
The 'Picture' literal object.- See Also:
PICTURE_VALUE
-
PIE
public static final LayerSeriesShowMode PIE
The 'Pie' literal object.- See Also:
PIE_VALUE
-
SIZED_PIE
public static final LayerSeriesShowMode SIZED_PIE
The 'Sized Pie' literal object.- See Also:
SIZED_PIE_VALUE
-
-
Field Detail
-
DONT_SHOW_VALUE
public static final int DONT_SHOW_VALUE
The 'Dont Show' literal value.- See Also:
DONT_SHOW
, Constant Field Values
-
TEXT_VALUE
public static final int TEXT_VALUE
The 'Text' literal value.- See Also:
TEXT
, Constant Field Values
-
COLUMN_VALUE
public static final int COLUMN_VALUE
The 'Column' literal value.- See Also:
COLUMN
, Constant Field Values
-
SHAPE_SIZE_VALUE
public static final int SHAPE_SIZE_VALUE
The 'Shape Size' literal value.- See Also:
SHAPE_SIZE
, Constant Field Values
-
SHAPE_COLOR_VALUE
public static final int SHAPE_COLOR_VALUE
The 'Shape Color' literal value.- See Also:
SHAPE_COLOR
, Constant Field Values
-
SHAPE_COLOR_HUE_VALUE
public static final int SHAPE_COLOR_HUE_VALUE
The 'Shape Color Hue' literal value.- See Also:
SHAPE_COLOR_HUE
, Constant Field Values
-
PICTURE_VALUE
public static final int PICTURE_VALUE
The 'Picture' literal value.- See Also:
PICTURE
, Constant Field Values
-
PIE_VALUE
public static final int PIE_VALUE
The 'Pie' literal value.- See Also:
PIE
, Constant Field Values
-
SIZED_PIE_VALUE
public static final int SIZED_PIE_VALUE
The 'Sized Pie' literal value.- See Also:
SIZED_PIE
, Constant Field Values
-
VALUES
public static final List<LayerSeriesShowMode> VALUES
A public read-only list of all the 'Layer Series Show Mode' enumerators.
-
-
Method Detail
-
values
public static LayerSeriesShowMode[] 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 (LayerSeriesShowMode c : LayerSeriesShowMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LayerSeriesShowMode 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 LayerSeriesShowMode get(String literal)
Returns the 'Layer Series Show Mode' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static LayerSeriesShowMode getByName(String name)
Returns the 'Layer Series Show Mode' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static LayerSeriesShowMode get(int value)
Returns the 'Layer Series Show Mode' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
getValue
public int getValue()
- Specified by:
getValue
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteral
in interfaceorg.eclipse.emf.common.util.Enumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<LayerSeriesShowMode>
-
-