Enum DataCompositionDetailsProcessingAction
- java.lang.Object
-
- java.lang.Enum<DataCompositionDetailsProcessingAction>
-
- com._1c.g5.v8.dt.dcs.model.details.DataCompositionDetailsProcessingAction
-
- All Implemented Interfaces:
Serializable
,Comparable<DataCompositionDetailsProcessingAction>
,org.eclipse.emf.common.util.Enumerator
public enum DataCompositionDetailsProcessingAction extends Enum<DataCompositionDetailsProcessingAction> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Data Composition Details Processing Action', and utility methods for working with them.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLY_APPEARANCE
The 'Apply Appearance' literal object.DRILL_DOWN
The 'Drill Down' literal object.FILTER
The 'Filter' literal object.GROUP
The 'Group' literal object.NONE
The 'None' literal object.OPEN_VALUE
The 'Open Value' literal object.ORDER
The 'Order' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
APPLY_APPEARANCE_VALUE
The 'Apply Appearance' literal value.static int
DRILL_DOWN_VALUE
The 'Drill Down' literal value.static int
FILTER_VALUE
The 'Filter' literal value.static int
GROUP_VALUE
The 'Group' literal value.static int
NONE_VALUE
The 'None' literal value.static int
OPEN_VALUE_VALUE
The 'Open Value' literal value.static int
ORDER_VALUE
The 'Order' literal value.static List<DataCompositionDetailsProcessingAction>
VALUES
A public read-only list of all the 'Data Composition Details Processing Action' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataCompositionDetailsProcessingAction
get(int value)
Returns the 'Data Composition Details Processing Action' literal with the specified integer value.static DataCompositionDetailsProcessingAction
get(String literal)
Returns the 'Data Composition Details Processing Action' literal with the specified literal value.static DataCompositionDetailsProcessingAction
getByName(String name)
Returns the 'Data Composition Details Processing Action' 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 DataCompositionDetailsProcessingAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataCompositionDetailsProcessingAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DataCompositionDetailsProcessingAction NONE
The 'None' literal object.- See Also:
NONE_VALUE
-
DRILL_DOWN
public static final DataCompositionDetailsProcessingAction DRILL_DOWN
The 'Drill Down' literal object.- See Also:
DRILL_DOWN_VALUE
-
FILTER
public static final DataCompositionDetailsProcessingAction FILTER
The 'Filter' literal object.- See Also:
FILTER_VALUE
-
ORDER
public static final DataCompositionDetailsProcessingAction ORDER
The 'Order' literal object.- See Also:
ORDER_VALUE
-
GROUP
public static final DataCompositionDetailsProcessingAction GROUP
The 'Group' literal object.- See Also:
GROUP_VALUE
-
OPEN_VALUE
public static final DataCompositionDetailsProcessingAction OPEN_VALUE
The 'Open Value' literal object.- See Also:
OPEN_VALUE_VALUE
-
APPLY_APPEARANCE
public static final DataCompositionDetailsProcessingAction APPLY_APPEARANCE
The 'Apply Appearance' literal object.- See Also:
APPLY_APPEARANCE_VALUE
-
-
Field Detail
-
NONE_VALUE
public static final int NONE_VALUE
The 'None' literal value.- See Also:
NONE
, Constant Field Values
-
DRILL_DOWN_VALUE
public static final int DRILL_DOWN_VALUE
The 'Drill Down' literal value.- See Also:
DRILL_DOWN
, Constant Field Values
-
FILTER_VALUE
public static final int FILTER_VALUE
The 'Filter' literal value.- See Also:
FILTER
, Constant Field Values
-
ORDER_VALUE
public static final int ORDER_VALUE
The 'Order' literal value.- See Also:
ORDER
, Constant Field Values
-
GROUP_VALUE
public static final int GROUP_VALUE
The 'Group' literal value.- See Also:
GROUP
, Constant Field Values
-
OPEN_VALUE_VALUE
public static final int OPEN_VALUE_VALUE
The 'Open Value' literal value.- See Also:
OPEN_VALUE
, Constant Field Values
-
APPLY_APPEARANCE_VALUE
public static final int APPLY_APPEARANCE_VALUE
The 'Apply Appearance' literal value.- See Also:
APPLY_APPEARANCE
, Constant Field Values
-
VALUES
public static final List<DataCompositionDetailsProcessingAction> VALUES
A public read-only list of all the 'Data Composition Details Processing Action' enumerators.
-
-
Method Detail
-
values
public static DataCompositionDetailsProcessingAction[] 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 (DataCompositionDetailsProcessingAction c : DataCompositionDetailsProcessingAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataCompositionDetailsProcessingAction 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 DataCompositionDetailsProcessingAction get(String literal)
Returns the 'Data Composition Details Processing Action' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static DataCompositionDetailsProcessingAction getByName(String name)
Returns the 'Data Composition Details Processing Action' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static DataCompositionDetailsProcessingAction get(int value)
Returns the 'Data Composition Details Processing Action' 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<DataCompositionDetailsProcessingAction>
-
-