public enum BulletStyle extends java.lang.Enum<BulletStyle> implements org.eclipse.emf.common.util.Enumerator
RichtextPackage.getBulletStyle()
Enum Constant and Description |
---|
CIRCLE
The 'CIRCLE' literal object.
|
DISC
The 'DISC' literal object.
|
INHERIT
The 'INHERIT' literal object.
|
NONE
The 'NONE' literal object.
|
NOT_SPECIFIED
The 'NOT SPECIFIED' literal object.
|
SQUARE
The 'SQUARE' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
CIRCLE_VALUE
The 'CIRCLE' literal value.
|
static int |
DISC_VALUE
The 'DISC' literal value.
|
static int |
INHERIT_VALUE
The 'INHERIT' literal value.
|
static int |
NONE_VALUE
The 'NONE' literal value.
|
static int |
NOT_SPECIFIED_VALUE
The 'NOT SPECIFIED' literal value.
|
static int |
SQUARE_VALUE
The 'SQUARE' literal value.
|
static java.util.List<BulletStyle> |
VALUES
A public read-only list of all the 'Bullet Style' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static BulletStyle |
get(int value)
Returns the 'Bullet Style' literal with the specified integer value.
|
static BulletStyle |
get(java.lang.String literal)
Returns the 'Bullet Style' literal with the specified literal value.
|
static BulletStyle |
getByName(java.lang.String name)
Returns the 'Bullet Style' 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 BulletStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BulletStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulletStyle NOT_SPECIFIED
NOT_SPECIFIED_VALUE
public static final BulletStyle INHERIT
INHERIT_VALUE
public static final BulletStyle NONE
NONE_VALUE
public static final BulletStyle DISC
DISC_VALUE
public static final BulletStyle SQUARE
SQUARE_VALUE
public static final BulletStyle CIRCLE
CIRCLE_VALUE
public static final int NOT_SPECIFIED_VALUE
If the meaning of 'NOT SPECIFIED' literal object isn't clear, there really should be more of a description here...
NOT_SPECIFIED
,
Constant Field Valuespublic static final int INHERIT_VALUE
If the meaning of 'INHERIT' literal object isn't clear, there really should be more of a description here...
INHERIT
,
Constant Field Valuespublic static final int NONE_VALUE
If the meaning of 'NONE' literal object isn't clear, there really should be more of a description here...
NONE
,
Constant Field Valuespublic static final int DISC_VALUE
If the meaning of 'DISC' literal object isn't clear, there really should be more of a description here...
DISC
,
Constant Field Valuespublic static final int SQUARE_VALUE
If the meaning of 'SQUARE' literal object isn't clear, there really should be more of a description here...
SQUARE
,
Constant Field Valuespublic static final int CIRCLE_VALUE
If the meaning of 'CIRCLE' literal object isn't clear, there really should be more of a description here...
CIRCLE
,
Constant Field Valuespublic static final java.util.List<BulletStyle> VALUES
public static BulletStyle[] values()
for (BulletStyle c : BulletStyle.values()) System.out.println(c);
public static BulletStyle 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 BulletStyle get(java.lang.String literal)
public static BulletStyle getByName(java.lang.String name)
public static BulletStyle get(int value)
public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<BulletStyle>