public enum MarkerType extends java.lang.Enum<MarkerType>
AttributePackage.getMarkerType()
Enum Constant and Description |
---|
BOX_LITERAL
The 'Box' literal object.
|
CIRCLE_LITERAL
The 'Circle' literal object.
|
COLUMN_LITERAL
The 'Column' literal object.
|
CROSS_LITERAL
The 'Cross' literal object.
|
CROSSHAIR_LITERAL
The 'Crosshair' literal object.
|
DIAMOND_LITERAL
The 'Diamond' literal object.
|
ELLIPSE_LITERAL
The 'Ellipse' literal object.
|
FOUR_DIAMONDS_LITERAL
The 'Four Diamonds' literal object.
|
HEXAGON_LITERAL
The 'Hexagon' literal object.
|
ICON_LITERAL
The 'Icon' literal object.
|
NABLA_LITERAL
The 'Nabla' literal object.
|
RECTANGLE_LITERAL
The 'Rectangle' literal object.
|
SEMI_CIRCLE_LITERAL
The 'Semi Circle' literal object.
|
STAR_LITERAL
The 'Star' literal object.
|
TRIANGLE_LITERAL
The 'Triangle' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
BOX
The 'Box' literal value.
|
static int |
CIRCLE
The 'Circle' literal value.
|
static int |
COLUMN
The 'Column' literal value.
|
static int |
CROSS
The 'Cross' literal value.
|
static int |
CROSSHAIR
The 'Crosshair' literal value.
|
static int |
DIAMOND
The 'Diamond' literal value.
|
static int |
ELLIPSE
The 'Ellipse' literal value.
|
static int |
FOUR_DIAMONDS
The 'Four Diamonds' literal value.
|
static int |
HEXAGON
The 'Hexagon' literal value.
|
static int |
ICON
The 'Icon' literal value.
|
static int |
NABLA
The 'Nabla' literal value.
|
static int |
RECTANGLE
The 'Rectangle' literal value.
|
static int |
SEMI_CIRCLE
The 'Semi Circle' literal value.
|
static int |
STAR
The 'Star' literal value.
|
static int |
TRIANGLE
The 'Triangle' literal value.
|
static java.util.List<MarkerType> |
VALUES
A public read-only list of all the 'Marker Type' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static MarkerType |
get(int value)
Returns the 'Marker Type' literal with the specified integer value.
|
static MarkerType |
get(java.lang.String literal)
Returns the 'Marker Type' literal with the specified literal value.
|
static MarkerType |
getByName(java.lang.String name)
Returns the 'Marker Type' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static MarkerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MarkerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkerType CROSSHAIR_LITERAL
If the meaning of 'Crosshair' literal object isn't clear, there really should be more of a description here...
CROSSHAIR
public static final MarkerType TRIANGLE_LITERAL
If the meaning of 'Triangle' literal object isn't clear, there really should be more of a description here...
TRIANGLE
public static final MarkerType BOX_LITERAL
If the meaning of 'Box' literal object isn't clear, there really should be more of a description here...
BOX
public static final MarkerType CIRCLE_LITERAL
If the meaning of 'Circle' literal object isn't clear, there really should be more of a description here...
CIRCLE
public static final MarkerType ICON_LITERAL
ICON
public static final MarkerType NABLA_LITERAL
NABLA
public static final MarkerType DIAMOND_LITERAL
DIAMOND
public static final MarkerType FOUR_DIAMONDS_LITERAL
FOUR_DIAMONDS
public static final MarkerType ELLIPSE_LITERAL
ELLIPSE
public static final MarkerType SEMI_CIRCLE_LITERAL
SEMI_CIRCLE
public static final MarkerType HEXAGON_LITERAL
HEXAGON
public static final MarkerType RECTANGLE_LITERAL
RECTANGLE
public static final MarkerType STAR_LITERAL
STAR
public static final MarkerType COLUMN_LITERAL
COLUMN
public static final MarkerType CROSS_LITERAL
CROSS
public static final int CROSSHAIR
CROSSHAIR_LITERAL
,
Constant Field Valuespublic static final int TRIANGLE
TRIANGLE_LITERAL
,
Constant Field Valuespublic static final int BOX
BOX_LITERAL
,
Constant Field Valuespublic static final int CIRCLE
CIRCLE_LITERAL
,
Constant Field Valuespublic static final int ICON
If the meaning of 'Icon' literal object isn't clear, there really should be more of a description here...
ICON_LITERAL
,
Constant Field Valuespublic static final int NABLA
If the meaning of 'Nabla' literal object isn't clear, there really should be more of a description here...
NABLA_LITERAL
,
Constant Field Valuespublic static final int DIAMOND
If the meaning of 'Diamond' literal object isn't clear, there really should be more of a description here...
DIAMOND_LITERAL
,
Constant Field Valuespublic static final int FOUR_DIAMONDS
If the meaning of 'Four Diamonds' literal object isn't clear, there really should be more of a description here...
FOUR_DIAMONDS_LITERAL
,
Constant Field Valuespublic static final int ELLIPSE
If the meaning of 'Ellipse' literal object isn't clear, there really should be more of a description here...
ELLIPSE_LITERAL
,
Constant Field Valuespublic static final int SEMI_CIRCLE
If the meaning of 'Semi Circle' literal object isn't clear, there really should be more of a description here...
SEMI_CIRCLE_LITERAL
,
Constant Field Valuespublic static final int HEXAGON
If the meaning of 'Hexagon' literal object isn't clear, there really should be more of a description here...
HEXAGON_LITERAL
,
Constant Field Valuespublic static final int RECTANGLE
If the meaning of 'Rectangle' literal object isn't clear, there really should be more of a description here...
RECTANGLE_LITERAL
,
Constant Field Valuespublic static final int STAR
If the meaning of 'Star' literal object isn't clear, there really should be more of a description here...
STAR_LITERAL
,
Constant Field Valuespublic static final int COLUMN
If the meaning of 'Column' literal object isn't clear, there really should be more of a description here...
COLUMN_LITERAL
,
Constant Field Valuespublic static final int CROSS
If the meaning of 'Cross' literal object isn't clear, there really should be more of a description here...
CROSS_LITERAL
,
Constant Field Valuespublic static final java.util.List<MarkerType> VALUES
public static MarkerType[] values()
for (MarkerType c : MarkerType.values()) System.out.println(c);
public static MarkerType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static MarkerType get(java.lang.String literal)
public static MarkerType getByName(java.lang.String name)
public static MarkerType get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<MarkerType>
Copyright © 2005-2014 OpenText Corp. All rights reserved.