Package com._1c.g5.v8.dt.moxel.content
Enum DetailUse
- java.lang.Object
-
- java.lang.Enum<DetailUse>
-
- com._1c.g5.v8.dt.moxel.content.DetailUse
-
- All Implemented Interfaces:
Serializable,Comparable<DetailUse>,org.eclipse.emf.common.util.Enumerator
public enum DetailUse extends Enum<DetailUse> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Detail Use', and utility methods for working with them.- See Also:
ContentPackage.getDetailUse()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CELLThe 'Cell' literal object.ROWThe 'Row' literal object.WITHOUT_PROCESSINGThe 'Without Processing' literal object.
-
Field Summary
Fields Modifier and Type Field Description static intCELL_VALUEThe 'Cell' literal value.static intROW_VALUEThe 'Row' literal value.static List<DetailUse>VALUESA public read-only list of all the 'Detail Use' enumerators.static intWITHOUT_PROCESSING_VALUEThe 'Without Processing' literal value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DetailUseget(int value)Returns the 'Detail Use' literal with the specified integer value.static DetailUseget(String literal)Returns the 'Detail Use' literal with the specified literal value.static DetailUsegetByName(String name)Returns the 'Detail Use' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static DetailUsevalueOf(String name)Returns the enum constant of this type with the specified name.static DetailUse[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CELL
public static final DetailUse CELL
The 'Cell' literal object.- See Also:
CELL_VALUE
-
WITHOUT_PROCESSING
public static final DetailUse WITHOUT_PROCESSING
The 'Without Processing' literal object.- See Also:
WITHOUT_PROCESSING_VALUE
-
-
Field Detail
-
CELL_VALUE
public static final int CELL_VALUE
The 'Cell' literal value.- See Also:
CELL, Constant Field Values
-
ROW_VALUE
public static final int ROW_VALUE
The 'Row' literal value.- See Also:
ROW, Constant Field Values
-
WITHOUT_PROCESSING_VALUE
public static final int WITHOUT_PROCESSING_VALUE
The 'Without Processing' literal value.- See Also:
WITHOUT_PROCESSING, Constant Field Values
-
-
Method Detail
-
values
public static DetailUse[] 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 (DetailUse c : DetailUse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DetailUse 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 DetailUse get(String literal)
Returns the 'Detail Use' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null.
-
getByName
public static DetailUse getByName(String name)
Returns the 'Detail Use' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null.
-
get
public static DetailUse get(int value)
Returns the 'Detail Use' literal with the specified integer value.- Parameters:
value- the integer value.- Returns:
- the matching enumerator or
null.
-
getValue
public int getValue()
- Specified by:
getValuein interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
public String getName()
- Specified by:
getNamein interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteralin interfaceorg.eclipse.emf.common.util.Enumerator
-
-