Package com._1c.g5.v8.dt.metadata.common
Enum DefaultReportAppearanceTemplate
- java.lang.Object
-
- java.lang.Enum<DefaultReportAppearanceTemplate>
-
- com._1c.g5.v8.dt.metadata.common.DefaultReportAppearanceTemplate
-
- All Implemented Interfaces:
Serializable
,Comparable<DefaultReportAppearanceTemplate>
,org.eclipse.emf.common.util.Enumerator
public enum DefaultReportAppearanceTemplate extends Enum<DefaultReportAppearanceTemplate> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Default Report Appearance Template', and utility methods for working with them.
-
-
Field Summary
Fields Modifier and Type Field Description static int
ANTIQUE_VALUE
The 'Antique' literal value.static int
ARCTIC_VALUE
The 'Arctic' literal value.static int
GAUDY_VALUE
The 'Gaudy' literal value.static int
GREEN_VALUE
The 'Green' literal value.static int
MAIN_VALUE
The 'Main' literal value.static int
NONE_VALUE
The 'None' literal value.static int
SEA_VALUE
The 'Sea' literal value.static List<DefaultReportAppearanceTemplate>
VALUES
A public read-only list of all the 'Default Report Appearance Template' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefaultReportAppearanceTemplate
get(int value)
Returns the 'Default Report Appearance Template' literal with the specified integer value.static DefaultReportAppearanceTemplate
get(String literal)
Returns the 'Default Report Appearance Template' literal with the specified literal value.static DefaultReportAppearanceTemplate
getByName(String name)
Returns the 'Default Report Appearance Template' 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 DefaultReportAppearanceTemplate
valueOf(String name)
Returns the enum constant of this type with the specified name.static DefaultReportAppearanceTemplate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DefaultReportAppearanceTemplate NONE
The 'None' literal object.- See Also:
NONE_VALUE
-
MAIN
public static final DefaultReportAppearanceTemplate MAIN
The 'Main' literal object.- See Also:
MAIN_VALUE
-
GAUDY
public static final DefaultReportAppearanceTemplate GAUDY
The 'Gaudy' literal object.- See Also:
GAUDY_VALUE
-
SEA
public static final DefaultReportAppearanceTemplate SEA
The 'Sea' literal object.- See Also:
SEA_VALUE
-
ARCTIC
public static final DefaultReportAppearanceTemplate ARCTIC
The 'Arctic' literal object.- See Also:
ARCTIC_VALUE
-
GREEN
public static final DefaultReportAppearanceTemplate GREEN
The 'Green' literal object.- See Also:
GREEN_VALUE
-
ANTIQUE
public static final DefaultReportAppearanceTemplate ANTIQUE
The 'Antique' literal object.- See Also:
ANTIQUE_VALUE
-
-
Field Detail
-
NONE_VALUE
public static final int NONE_VALUE
The 'None' literal value.- See Also:
NONE
, Constant Field Values
-
MAIN_VALUE
public static final int MAIN_VALUE
The 'Main' literal value.- See Also:
MAIN
, Constant Field Values
-
GAUDY_VALUE
public static final int GAUDY_VALUE
The 'Gaudy' literal value.- See Also:
GAUDY
, Constant Field Values
-
SEA_VALUE
public static final int SEA_VALUE
The 'Sea' literal value.- See Also:
SEA
, Constant Field Values
-
ARCTIC_VALUE
public static final int ARCTIC_VALUE
The 'Arctic' literal value.- See Also:
ARCTIC
, Constant Field Values
-
GREEN_VALUE
public static final int GREEN_VALUE
The 'Green' literal value.- See Also:
GREEN
, Constant Field Values
-
ANTIQUE_VALUE
public static final int ANTIQUE_VALUE
The 'Antique' literal value.- See Also:
ANTIQUE
, Constant Field Values
-
VALUES
public static final List<DefaultReportAppearanceTemplate> VALUES
A public read-only list of all the 'Default Report Appearance Template' enumerators.
-
-
Method Detail
-
values
public static DefaultReportAppearanceTemplate[] 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 (DefaultReportAppearanceTemplate c : DefaultReportAppearanceTemplate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultReportAppearanceTemplate 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 DefaultReportAppearanceTemplate get(String literal)
Returns the 'Default Report Appearance Template' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static DefaultReportAppearanceTemplate getByName(String name)
Returns the 'Default Report Appearance Template' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static DefaultReportAppearanceTemplate get(int value)
Returns the 'Default Report Appearance Template' 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<DefaultReportAppearanceTemplate>
-
-