Enum InterfaceCompatibilityMode
- java.lang.Object
-
- java.lang.Enum<InterfaceCompatibilityMode>
-
- com._1c.g5.v8.dt.metadata.mdclass.InterfaceCompatibilityMode
-
- All Implemented Interfaces:
Serializable,Comparable<InterfaceCompatibilityMode>,org.eclipse.emf.common.util.Enumerator
public enum InterfaceCompatibilityMode extends Enum<InterfaceCompatibilityMode> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Interface Compatibility Mode', and utility methods for working with them.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TAXIThe 'Taxi' literal object.TAXI_ENABLE_VERSION8_2The 'Taxi Enable Version8 2' literal object.VERSION8_2The 'Version8 2' literal object.VERSION8_2ENABLE_TAXIThe 'Version8 2Enable Taxi' literal object.
-
Field Summary
Fields Modifier and Type Field Description static intTAXI_ENABLE_VERSION8_2_VALUEThe 'Taxi Enable Version8 2' literal value.static intTAXI_VALUEThe 'Taxi' literal value.static List<InterfaceCompatibilityMode>VALUESA public read-only list of all the 'Interface Compatibility Mode' enumerators.static intVERSION8_2_VALUEThe 'Version8 2' literal value.static intVERSION8_2ENABLE_TAXI_VALUEThe 'Version8 2Enable Taxi' literal value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InterfaceCompatibilityModeget(int value)Returns the 'Interface Compatibility Mode' literal with the specified integer value.static InterfaceCompatibilityModeget(String literal)Returns the 'Interface Compatibility Mode' literal with the specified literal value.static InterfaceCompatibilityModegetByName(String name)Returns the 'Interface Compatibility Mode' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static InterfaceCompatibilityModevalueOf(String name)Returns the enum constant of this type with the specified name.static InterfaceCompatibilityMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TAXI
public static final InterfaceCompatibilityMode TAXI
The 'Taxi' literal object.- See Also:
TAXI_VALUE
-
TAXI_ENABLE_VERSION8_2
public static final InterfaceCompatibilityMode TAXI_ENABLE_VERSION8_2
The 'Taxi Enable Version8 2' literal object.- See Also:
TAXI_ENABLE_VERSION8_2_VALUE
-
VERSION8_2ENABLE_TAXI
public static final InterfaceCompatibilityMode VERSION8_2ENABLE_TAXI
The 'Version8 2Enable Taxi' literal object.- See Also:
VERSION8_2ENABLE_TAXI_VALUE
-
VERSION8_2
public static final InterfaceCompatibilityMode VERSION8_2
The 'Version8 2' literal object.- See Also:
VERSION8_2_VALUE
-
-
Field Detail
-
TAXI_VALUE
public static final int TAXI_VALUE
The 'Taxi' literal value.- See Also:
TAXI, Constant Field Values
-
TAXI_ENABLE_VERSION8_2_VALUE
public static final int TAXI_ENABLE_VERSION8_2_VALUE
The 'Taxi Enable Version8 2' literal value.- See Also:
TAXI_ENABLE_VERSION8_2, Constant Field Values
-
VERSION8_2ENABLE_TAXI_VALUE
public static final int VERSION8_2ENABLE_TAXI_VALUE
The 'Version8 2Enable Taxi' literal value.- See Also:
VERSION8_2ENABLE_TAXI, Constant Field Values
-
VERSION8_2_VALUE
public static final int VERSION8_2_VALUE
The 'Version8 2' literal value.- See Also:
VERSION8_2, Constant Field Values
-
VALUES
public static final List<InterfaceCompatibilityMode> VALUES
A public read-only list of all the 'Interface Compatibility Mode' enumerators.
-
-
Method Detail
-
values
public static InterfaceCompatibilityMode[] 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 (InterfaceCompatibilityMode c : InterfaceCompatibilityMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterfaceCompatibilityMode 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 InterfaceCompatibilityMode get(String literal)
Returns the 'Interface Compatibility Mode' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null.
-
getByName
public static InterfaceCompatibilityMode getByName(String name)
Returns the 'Interface Compatibility Mode' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null.
-
get
public static InterfaceCompatibilityMode get(int value)
Returns the 'Interface Compatibility Mode' 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<InterfaceCompatibilityMode>
-
-