|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StiPenStyle>
com.stimulsoft.base.drawing.enums.StiPenStyle
public enum StiPenStyle
Enum Constant Summary | |
---|---|
Dash
Dotted line. |
|
DashDot
Dash-dotted line. |
|
DashDotDot
Dotted-dash-dash line. |
|
Dot
Dotted line. |
|
Double
Double line. |
|
None
No. |
|
Solid
Solid line. |
Method Summary | |
---|---|
static StiPenStyle |
forValue(int value)
|
float[] |
getDash(float width)
|
int |
getValue()
|
static StiPenStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StiPenStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final StiPenStyle Solid
public static final StiPenStyle Dash
public static final StiPenStyle DashDot
public static final StiPenStyle DashDotDot
public static final StiPenStyle Dot
public static final StiPenStyle Double
public static final StiPenStyle None
Method Detail |
---|
public static StiPenStyle[] values()
for (StiPenStyle c : StiPenStyle.values()) System.out.println(c);
public static StiPenStyle 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 name
java.lang.NullPointerException
- if the argument is nullpublic int getValue()
public static StiPenStyle forValue(int value)
public float[] getDash(float width)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |