public enum AcopDrawStyleEnum extends java.lang.Enum<AcopDrawStyleEnum>
Enum Constant and Description |
---|
PS_DASH |
PS_DASH_DOT |
PS_DOT |
PS_SOLID |
Modifier and Type | Method and Description |
---|---|
static AcopDrawStyleEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AcopDrawStyleEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcopDrawStyleEnum PS_SOLID
public static final AcopDrawStyleEnum PS_DASH
public static final AcopDrawStyleEnum PS_DOT
public static final AcopDrawStyleEnum PS_DASH_DOT
public static AcopDrawStyleEnum[] values()
for (AcopDrawStyleEnum c : AcopDrawStyleEnum.values()) System.out.println(c);
public static AcopDrawStyleEnum 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 null