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 SummaryEnum Constants Enum Constant Description ADD_ONThe 'Add On' literal object.CUSTOMIZATIONThe 'Customization' literal object.PATCHThe 'Patch' literal object.
 - 
Field SummaryFields Modifier and Type Field Description static intADD_ON_VALUEThe 'Add On' literal value.static intCUSTOMIZATION_VALUEThe 'Customization' literal value.static intPATCH_VALUEThe 'Patch' literal value.static List<ConfigurationExtensionPurpose>VALUESA public read-only list of all the 'Configuration Extension Purpose' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfigurationExtensionPurposeget(int value)Returns the 'Configuration Extension Purpose' literal with the specified integer value.static ConfigurationExtensionPurposeget(String literal)Returns the 'Configuration Extension Purpose' literal with the specified literal value.static ConfigurationExtensionPurposegetByName(String name)Returns the 'Configuration Extension Purpose' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static ConfigurationExtensionPurposevalueOf(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- 
PATCHpublic static final ConfigurationExtensionPurpose PATCH The 'Patch' literal object.- See Also:
- PATCH_VALUE
 
 - 
CUSTOMIZATIONpublic static final ConfigurationExtensionPurpose CUSTOMIZATION The 'Customization' literal object.- See Also:
- CUSTOMIZATION_VALUE
 
 - 
ADD_ONpublic static final ConfigurationExtensionPurpose ADD_ON The 'Add On' literal object.- See Also:
- ADD_ON_VALUE
 
 
- 
 - 
Field Detail- 
PATCH_VALUEpublic static final int PATCH_VALUE The 'Patch' literal value.- See Also:
- PATCH, Constant Field Values
 
 - 
CUSTOMIZATION_VALUEpublic static final int CUSTOMIZATION_VALUE The 'Customization' literal value.- See Also:
- CUSTOMIZATION, Constant Field Values
 
 - 
ADD_ON_VALUEpublic static final int ADD_ON_VALUE The 'Add On' literal value.- See Also:
- ADD_ON, Constant Field Values
 
 - 
VALUESpublic static final List<ConfigurationExtensionPurpose> VALUES A public read-only list of all the 'Configuration Extension Purpose' enumerators.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getpublic 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.
 
 - 
getByNamepublic 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.
 
 - 
getpublic 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.
 
 - 
getValuepublic int getValue() - Specified by:
- getValuein interface- org.eclipse.emf.common.util.Enumerator
 
 - 
getNamepublic String getName() - Specified by:
- getNamein interface- org.eclipse.emf.common.util.Enumerator
 
 - 
getLiteralpublic String getLiteral() - Specified by:
- getLiteralin interface- org.eclipse.emf.common.util.Enumerator
 
 - 
toStringpublic String toString() Returns the literal value of the enumerator, which is its string representation.- Overrides:
- toStringin class- Enum<ConfigurationExtensionPurpose>
 
 
- 
 
-