Enum DataCompositionGroupPlacement
- java.lang.Object
-
- java.lang.Enum<DataCompositionGroupPlacement>
-
- com._1c.g5.v8.dt.dcs.model.settings.DataCompositionGroupPlacement
-
- All Implemented Interfaces:
Serializable
,Comparable<DataCompositionGroupPlacement>
,org.eclipse.emf.common.util.Enumerator
public enum DataCompositionGroupPlacement extends Enum<DataCompositionGroupPlacement> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Data Composition Group Placement', and utility methods for working with them.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEGIN
The 'Begin' literal object.BEGIN_AND_END
The 'Begin And End' literal object.END
The 'End' literal object.NONE
The 'None' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
BEGIN_AND_END_VALUE
The 'Begin And End' literal value.static int
BEGIN_VALUE
The 'Begin' literal value.static int
END_VALUE
The 'End' literal value.static int
NONE_VALUE
The 'None' literal value.static List<DataCompositionGroupPlacement>
VALUES
A public read-only list of all the 'Data Composition Group Placement' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataCompositionGroupPlacement
get(int value)
Returns the 'Data Composition Group Placement' literal with the specified integer value.static DataCompositionGroupPlacement
get(String literal)
Returns the 'Data Composition Group Placement' literal with the specified literal value.static DataCompositionGroupPlacement
getByName(String name)
Returns the 'Data Composition Group Placement' 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 DataCompositionGroupPlacement
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataCompositionGroupPlacement[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEGIN
public static final DataCompositionGroupPlacement BEGIN
The 'Begin' literal object.- See Also:
BEGIN_VALUE
-
END
public static final DataCompositionGroupPlacement END
The 'End' literal object.- See Also:
END_VALUE
-
BEGIN_AND_END
public static final DataCompositionGroupPlacement BEGIN_AND_END
The 'Begin And End' literal object.- See Also:
BEGIN_AND_END_VALUE
-
NONE
public static final DataCompositionGroupPlacement NONE
The 'None' literal object.- See Also:
NONE_VALUE
-
-
Field Detail
-
BEGIN_VALUE
public static final int BEGIN_VALUE
The 'Begin' literal value.- See Also:
BEGIN
, Constant Field Values
-
END_VALUE
public static final int END_VALUE
The 'End' literal value.- See Also:
END
, Constant Field Values
-
BEGIN_AND_END_VALUE
public static final int BEGIN_AND_END_VALUE
The 'Begin And End' literal value.- See Also:
BEGIN_AND_END
, Constant Field Values
-
NONE_VALUE
public static final int NONE_VALUE
The 'None' literal value.- See Also:
NONE
, Constant Field Values
-
VALUES
public static final List<DataCompositionGroupPlacement> VALUES
A public read-only list of all the 'Data Composition Group Placement' enumerators.
-
-
Method Detail
-
values
public static DataCompositionGroupPlacement[] 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 (DataCompositionGroupPlacement c : DataCompositionGroupPlacement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataCompositionGroupPlacement 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 DataCompositionGroupPlacement get(String literal)
Returns the 'Data Composition Group Placement' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static DataCompositionGroupPlacement getByName(String name)
Returns the 'Data Composition Group Placement' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static DataCompositionGroupPlacement get(int value)
Returns the 'Data Composition Group Placement' 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<DataCompositionGroupPlacement>
-
-