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 CELL
The 'Cell' literal object.ROW
The 'Row' literal object.WITHOUT_PROCESSING
The 'Without Processing' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
CELL_VALUE
The 'Cell' literal value.static int
ROW_VALUE
The 'Row' literal value.static List<DetailUse>
VALUES
A public read-only list of all the 'Detail Use' enumerators.static int
WITHOUT_PROCESSING_VALUE
The 'Without Processing' literal value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DetailUse
get(int value)
Returns the 'Detail Use' literal with the specified integer value.static DetailUse
get(String literal)
Returns the 'Detail Use' literal with the specified literal value.static DetailUse
getByName(String name)
Returns the 'Detail Use' 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 DetailUse
valueOf(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:
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
-
-