Enum ConfigurationExtensionPurpose
- java.lang.Object
-
- java.lang.Enum<ConfigurationExtensionPurpose>
-
- com._1c.g5.v8.dt.metadata.mdclass.ConfigurationExtensionPurpose
-
- All Implemented Interfaces:
Serializable
,Comparable<ConfigurationExtensionPurpose>
,org.eclipse.emf.common.util.Enumerator
public enum ConfigurationExtensionPurpose extends Enum<ConfigurationExtensionPurpose> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Configuration Extension Purpose', and utility methods for working with them.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_ON
The 'Add On' literal object.CUSTOMIZATION
The 'Customization' literal object.PATCH
The 'Patch' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
ADD_ON_VALUE
The 'Add On' literal value.static int
CUSTOMIZATION_VALUE
The 'Customization' literal value.static int
PATCH_VALUE
The 'Patch' literal value.static List<ConfigurationExtensionPurpose>
VALUES
A public read-only list of all the 'Configuration Extension Purpose' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfigurationExtensionPurpose
get(int value)
Returns the 'Configuration Extension Purpose' literal with the specified integer value.static ConfigurationExtensionPurpose
get(String literal)
Returns the 'Configuration Extension Purpose' literal with the specified literal value.static ConfigurationExtensionPurpose
getByName(String name)
Returns the 'Configuration Extension Purpose' 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 ConfigurationExtensionPurpose
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConfigurationExtensionPurpose[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATCH
public static final ConfigurationExtensionPurpose PATCH
The 'Patch' literal object.- See Also:
PATCH_VALUE
-
CUSTOMIZATION
public static final ConfigurationExtensionPurpose CUSTOMIZATION
The 'Customization' literal object.- See Also:
CUSTOMIZATION_VALUE
-
ADD_ON
public static final ConfigurationExtensionPurpose ADD_ON
The 'Add On' literal object.- See Also:
ADD_ON_VALUE
-
-
Field Detail
-
PATCH_VALUE
public static final int PATCH_VALUE
The 'Patch' literal value.- See Also:
PATCH
, Constant Field Values
-
CUSTOMIZATION_VALUE
public static final int CUSTOMIZATION_VALUE
The 'Customization' literal value.- See Also:
CUSTOMIZATION
, Constant Field Values
-
ADD_ON_VALUE
public static final int ADD_ON_VALUE
The 'Add On' literal value.- See Also:
ADD_ON
, Constant Field Values
-
VALUES
public static final List<ConfigurationExtensionPurpose> VALUES
A public read-only list of all the 'Configuration Extension Purpose' enumerators.
-
-
Method Detail
-
values
public static ConfigurationExtensionPurpose[] 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 (ConfigurationExtensionPurpose c : ConfigurationExtensionPurpose.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigurationExtensionPurpose 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 ConfigurationExtensionPurpose get(String literal)
Returns the 'Configuration Extension Purpose' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static ConfigurationExtensionPurpose getByName(String name)
Returns the 'Configuration Extension Purpose' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static ConfigurationExtensionPurpose get(int value)
Returns the 'Configuration Extension Purpose' 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<ConfigurationExtensionPurpose>
-
-