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 Summary
Enum 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 Summary
Fields 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 Summary
All 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
-
USUAL
public static final AvailableSettingsSourceBehaviour USUAL
The 'Usual' literal object.- See Also:
USUAL_VALUE
-
DESIGNER
public static final AvailableSettingsSourceBehaviour DESIGNER
The 'Designer' literal object.- See Also:
DESIGNER_VALUE
-
UNIVERSAL_LIST
public static final AvailableSettingsSourceBehaviour UNIVERSAL_LIST
The 'Universal List' literal object.- See Also:
UNIVERSAL_LIST_VALUE
-
LOG_FORM_DESIGNER
public static final AvailableSettingsSourceBehaviour LOG_FORM_DESIGNER
The 'Log Form Designer' literal object.- See Also:
LOG_FORM_DESIGNER_VALUE
-
UNIVERSAL_LIST_DESIGNER
public static final AvailableSettingsSourceBehaviour UNIVERSAL_LIST_DESIGNER
The 'Universal List Designer' literal object.- See Also:
UNIVERSAL_LIST_DESIGNER_VALUE
-
-
Field Detail
-
USUAL_VALUE
public static final int USUAL_VALUE
The 'Usual' literal value.- See Also:
USUAL, Constant Field Values
-
DESIGNER_VALUE
public static final int DESIGNER_VALUE
The 'Designer' literal value.- See Also:
DESIGNER, Constant Field Values
-
UNIVERSAL_LIST_VALUE
public static final int UNIVERSAL_LIST_VALUE
The 'Universal List' literal value.- See Also:
UNIVERSAL_LIST, Constant Field Values
-
LOG_FORM_DESIGNER_VALUE
public static final int LOG_FORM_DESIGNER_VALUE
The 'Log Form Designer' literal value.- See Also:
LOG_FORM_DESIGNER, Constant Field Values
-
UNIVERSAL_LIST_DESIGNER_VALUE
public static final int UNIVERSAL_LIST_DESIGNER_VALUE
The 'Universal List Designer' literal value.- See Also:
UNIVERSAL_LIST_DESIGNER, Constant Field Values
-
VALUES
public static final List<AvailableSettingsSourceBehaviour> VALUES
A public read-only list of all the 'Available Settings Source Behaviour' enumerators.
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException- if the argument is null
-
get
public 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.
-
getByName
public 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.
-
get
public 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.
-
getValue
public int getValue()
- Specified by:
getValuein interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
public String getName()
- Specified by:
getNamein interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteralin interfaceorg.eclipse.emf.common.util.Enumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toStringin classEnum<AvailableSettingsSourceBehaviour>
-
-