public enum BulletStyle extends java.lang.Enum<BulletStyle> implements INativeEnum
Enum Constant and Description |
---|
DashBullet
Dash bullet.
|
FilledRoundBullet
Filled round bullet.
|
FilledSquareBullet
Filled square bullet.
|
HollowSquareBullet
Hollow square bullet.
|
LasVeHollowRoundBullet
Hollow round bullet.
|
None
None.
|
Other
Other.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Optional<BulletStyle> |
fromNativeValue(int nativeValue) |
java.lang.String |
getConstantName() |
int |
getNativeValue() |
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 None
public static final BulletStyle LasVeHollowRoundBullet
public static final BulletStyle FilledRoundBullet
public static final BulletStyle HollowSquareBullet
public static final BulletStyle FilledSquareBullet
public static final BulletStyle DashBullet
public static final BulletStyle Other
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 int getNativeValue()
getNativeValue
in interface INativeEnum
public java.lang.String getConstantName()
getConstantName
in interface INativeEnum
public static java.util.Optional<BulletStyle> fromNativeValue(int nativeValue)