Enum AvailableSettingsSourceBehaviour
- java.lang.Object
- 
- java.lang.Enum<AvailableSettingsSourceBehaviour>
- 
- com._1c.g5.v8.dt.dcs.model.settings.AvailableSettingsSourceBehaviour
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AvailableSettingsSourceBehaviour>,- org.eclipse.emf.common.util.Enumerator
 
 public enum AvailableSettingsSourceBehaviour extends Enum<AvailableSettingsSourceBehaviour> implements org.eclipse.emf.common.util.Enumerator A representation of the literals of the enumeration 'Available Settings Source Behaviour', and utility methods for working with them.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DESIGNERThe 'Designer' literal object.LOG_FORM_DESIGNERThe 'Log Form Designer' literal object.UNIVERSAL_LISTThe 'Universal List' literal object.UNIVERSAL_LIST_DESIGNERThe 'Universal List Designer' literal object.USUALThe 'Usual' literal object.
 - 
Field SummaryFields Modifier and Type Field Description static intDESIGNER_VALUEThe 'Designer' literal value.static intLOG_FORM_DESIGNER_VALUEThe 'Log Form Designer' literal value.static intUNIVERSAL_LIST_DESIGNER_VALUEThe 'Universal List Designer' literal value.static intUNIVERSAL_LIST_VALUEThe 'Universal List' literal value.static intUSUAL_VALUEThe 'Usual' literal value.static List<AvailableSettingsSourceBehaviour>VALUESA public read-only list of all the 'Available Settings Source Behaviour' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AvailableSettingsSourceBehaviourget(int value)Returns the 'Available Settings Source Behaviour' literal with the specified integer value.static AvailableSettingsSourceBehaviourget(String literal)Returns the 'Available Settings Source Behaviour' literal with the specified literal value.static AvailableSettingsSourceBehaviourgetByName(String name)Returns the 'Available Settings Source Behaviour' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static AvailableSettingsSourceBehaviourvalueOf(String name)Returns the enum constant of this type with the specified name.static AvailableSettingsSourceBehaviour[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
USUALpublic static final AvailableSettingsSourceBehaviour USUAL The 'Usual' literal object.- See Also:
- USUAL_VALUE
 
 - 
DESIGNERpublic static final AvailableSettingsSourceBehaviour DESIGNER The 'Designer' literal object.- See Also:
- DESIGNER_VALUE
 
 - 
UNIVERSAL_LISTpublic static final AvailableSettingsSourceBehaviour UNIVERSAL_LIST The 'Universal List' literal object.- See Also:
- UNIVERSAL_LIST_VALUE
 
 - 
LOG_FORM_DESIGNERpublic static final AvailableSettingsSourceBehaviour LOG_FORM_DESIGNER The 'Log Form Designer' literal object.- See Also:
- LOG_FORM_DESIGNER_VALUE
 
 - 
UNIVERSAL_LIST_DESIGNERpublic static final AvailableSettingsSourceBehaviour UNIVERSAL_LIST_DESIGNER The 'Universal List Designer' literal object.- See Also:
- UNIVERSAL_LIST_DESIGNER_VALUE
 
 
- 
 - 
Field Detail- 
USUAL_VALUEpublic static final int USUAL_VALUE The 'Usual' literal value.- See Also:
- USUAL, Constant Field Values
 
 - 
DESIGNER_VALUEpublic static final int DESIGNER_VALUE The 'Designer' literal value.- See Also:
- DESIGNER, Constant Field Values
 
 - 
UNIVERSAL_LIST_VALUEpublic static final int UNIVERSAL_LIST_VALUE The 'Universal List' literal value.- See Also:
- UNIVERSAL_LIST, Constant Field Values
 
 - 
LOG_FORM_DESIGNER_VALUEpublic static final int LOG_FORM_DESIGNER_VALUE The 'Log Form Designer' literal value.- See Also:
- LOG_FORM_DESIGNER, Constant Field Values
 
 - 
UNIVERSAL_LIST_DESIGNER_VALUEpublic static final int UNIVERSAL_LIST_DESIGNER_VALUE The 'Universal List Designer' literal value.- See Also:
- UNIVERSAL_LIST_DESIGNER, Constant Field Values
 
 - 
VALUESpublic static final List<AvailableSettingsSourceBehaviour> VALUES A public read-only list of all the 'Available Settings Source Behaviour' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static AvailableSettingsSourceBehaviour[] 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 (AvailableSettingsSourceBehaviour c : AvailableSettingsSourceBehaviour.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AvailableSettingsSourceBehaviour 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 AvailableSettingsSourceBehaviour get(String literal) Returns the 'Available Settings Source Behaviour' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static AvailableSettingsSourceBehaviour getByName(String name) Returns the 'Available Settings Source Behaviour' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static AvailableSettingsSourceBehaviour get(int value) Returns the 'Available Settings Source Behaviour' 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<AvailableSettingsSourceBehaviour>
 
 
- 
 
-