Enum PaintingReferencePointPosition
- java.lang.Object
-
- java.lang.Enum<PaintingReferencePointPosition>
-
- com._1c.g5.v8.dt.geographicalschema.model.PaintingReferencePointPosition
-
- All Implemented Interfaces:
Serializable,Comparable<PaintingReferencePointPosition>,org.eclipse.emf.common.util.Enumerator
public enum PaintingReferencePointPosition extends Enum<PaintingReferencePointPosition> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Painting Reference Point Position', and utility methods for working with them.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CENTERThe 'Center' literal object.CENTER_BOTTOMThe 'Center Bottom' literal object.CENTER_TOPThe 'Center Top' literal object.LEFT_BOTTOMThe 'Left Bottom' literal object.LEFT_CENTERThe 'Left Center' literal object.LEFT_TOPThe 'Left Top' literal object.RIGHT_BOTTOMThe 'Right Bottom' literal object.RIGHT_CENTERThe 'Right Center' literal object.RIGHT_TOPThe 'Right Top' literal object.
-
Field Summary
Fields Modifier and Type Field Description static intCENTER_BOTTOM_VALUEThe 'Center Bottom' literal value.static intCENTER_TOP_VALUEThe 'Center Top' literal value.static intCENTER_VALUEThe 'Center' literal value.static intLEFT_BOTTOM_VALUEThe 'Left Bottom' literal value.static intLEFT_CENTER_VALUEThe 'Left Center' literal value.static intLEFT_TOP_VALUEThe 'Left Top' literal value.static intRIGHT_BOTTOM_VALUEThe 'Right Bottom' literal value.static intRIGHT_CENTER_VALUEThe 'Right Center' literal value.static intRIGHT_TOP_VALUEThe 'Right Top' literal value.static List<PaintingReferencePointPosition>VALUESA public read-only list of all the 'Painting Reference Point Position' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PaintingReferencePointPositionget(int value)Returns the 'Painting Reference Point Position' literal with the specified integer value.static PaintingReferencePointPositionget(String literal)Returns the 'Painting Reference Point Position' literal with the specified literal value.static PaintingReferencePointPositiongetByName(String name)Returns the 'Painting Reference Point Position' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static PaintingReferencePointPositionvalueOf(String name)Returns the enum constant of this type with the specified name.static PaintingReferencePointPosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT_TOP
public static final PaintingReferencePointPosition LEFT_TOP
The 'Left Top' literal object.- See Also:
LEFT_TOP_VALUE
-
LEFT_CENTER
public static final PaintingReferencePointPosition LEFT_CENTER
The 'Left Center' literal object.- See Also:
LEFT_CENTER_VALUE
-
LEFT_BOTTOM
public static final PaintingReferencePointPosition LEFT_BOTTOM
The 'Left Bottom' literal object.- See Also:
LEFT_BOTTOM_VALUE
-
CENTER_TOP
public static final PaintingReferencePointPosition CENTER_TOP
The 'Center Top' literal object.- See Also:
CENTER_TOP_VALUE
-
CENTER
public static final PaintingReferencePointPosition CENTER
The 'Center' literal object.- See Also:
CENTER_VALUE
-
CENTER_BOTTOM
public static final PaintingReferencePointPosition CENTER_BOTTOM
The 'Center Bottom' literal object.- See Also:
CENTER_BOTTOM_VALUE
-
RIGHT_TOP
public static final PaintingReferencePointPosition RIGHT_TOP
The 'Right Top' literal object.- See Also:
RIGHT_TOP_VALUE
-
RIGHT_CENTER
public static final PaintingReferencePointPosition RIGHT_CENTER
The 'Right Center' literal object.- See Also:
RIGHT_CENTER_VALUE
-
RIGHT_BOTTOM
public static final PaintingReferencePointPosition RIGHT_BOTTOM
The 'Right Bottom' literal object.- See Also:
RIGHT_BOTTOM_VALUE
-
-
Field Detail
-
LEFT_TOP_VALUE
public static final int LEFT_TOP_VALUE
The 'Left Top' literal value.- See Also:
LEFT_TOP, Constant Field Values
-
LEFT_CENTER_VALUE
public static final int LEFT_CENTER_VALUE
The 'Left Center' literal value.- See Also:
LEFT_CENTER, Constant Field Values
-
LEFT_BOTTOM_VALUE
public static final int LEFT_BOTTOM_VALUE
The 'Left Bottom' literal value.- See Also:
LEFT_BOTTOM, Constant Field Values
-
CENTER_TOP_VALUE
public static final int CENTER_TOP_VALUE
The 'Center Top' literal value.- See Also:
CENTER_TOP, Constant Field Values
-
CENTER_VALUE
public static final int CENTER_VALUE
The 'Center' literal value.- See Also:
CENTER, Constant Field Values
-
CENTER_BOTTOM_VALUE
public static final int CENTER_BOTTOM_VALUE
The 'Center Bottom' literal value.- See Also:
CENTER_BOTTOM, Constant Field Values
-
RIGHT_TOP_VALUE
public static final int RIGHT_TOP_VALUE
The 'Right Top' literal value.- See Also:
RIGHT_TOP, Constant Field Values
-
RIGHT_CENTER_VALUE
public static final int RIGHT_CENTER_VALUE
The 'Right Center' literal value.- See Also:
RIGHT_CENTER, Constant Field Values
-
RIGHT_BOTTOM_VALUE
public static final int RIGHT_BOTTOM_VALUE
The 'Right Bottom' literal value.- See Also:
RIGHT_BOTTOM, Constant Field Values
-
VALUES
public static final List<PaintingReferencePointPosition> VALUES
A public read-only list of all the 'Painting Reference Point Position' enumerators.
-
-
Method Detail
-
values
public static PaintingReferencePointPosition[] 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 (PaintingReferencePointPosition c : PaintingReferencePointPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaintingReferencePointPosition 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 PaintingReferencePointPosition get(String literal)
Returns the 'Painting Reference Point Position' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null.
-
getByName
public static PaintingReferencePointPosition getByName(String name)
Returns the 'Painting Reference Point Position' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null.
-
get
public static PaintingReferencePointPosition get(int value)
Returns the 'Painting Reference Point Position' 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<PaintingReferencePointPosition>
-
-