|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<StrokeStyle.LineDash> org.apache.poi.sl.usermodel.StrokeStyle.LineDash
public static enum StrokeStyle.LineDash
The line dash with pattern. The pattern is derived empirically on PowerPoint 2010 and needs to be multiplied with actual line width
Enum Constant Summary | |
---|---|
DASH
dash style - native 7 |
|
DASH_DOT
dash short dash - native 9 |
|
DOT
square dot style - native 6 |
|
LG_DASH
long dash style - native 8 |
|
LG_DASH_DOT
long dash short dash - native 10 |
|
LG_DASH_DOT_DOT
long dash short dash short dash - native 11 |
|
SOLID
Solid (continuous) pen - native 1 |
|
SYS_DASH
PS_DASH system dash style - native 2 |
|
SYS_DASH_DOT
PS_DASHDOT system dash style - native 4 |
|
SYS_DASH_DOT_DOT
PS_DASHDOTDOT system dash style / native 5 |
|
SYS_DOT
PS_DOT system dash style - native 3 |
Field Summary | |
---|---|
int |
nativeId
|
int |
ooxmlId
|
int[] |
pattern
|
Method Summary | |
---|---|
static StrokeStyle.LineDash |
fromNativeId(int nativeId)
|
static StrokeStyle.LineDash |
fromOoxmlId(int ooxmlId)
|
static StrokeStyle.LineDash |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StrokeStyle.LineDash[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 StrokeStyle.LineDash SOLID
public static final StrokeStyle.LineDash DOT
public static final StrokeStyle.LineDash DASH
public static final StrokeStyle.LineDash DASH_DOT
public static final StrokeStyle.LineDash LG_DASH
public static final StrokeStyle.LineDash LG_DASH_DOT
public static final StrokeStyle.LineDash LG_DASH_DOT_DOT
public static final StrokeStyle.LineDash SYS_DASH
public static final StrokeStyle.LineDash SYS_DOT
public static final StrokeStyle.LineDash SYS_DASH_DOT
public static final StrokeStyle.LineDash SYS_DASH_DOT_DOT
Field Detail |
---|
public final int[] pattern
public final int nativeId
public final int ooxmlId
Method Detail |
---|
public static StrokeStyle.LineDash[] values()
for (StrokeStyle.LineDash c : StrokeStyle.LineDash.values()) System.out.println(c);
public static StrokeStyle.LineDash 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 static StrokeStyle.LineDash fromNativeId(int nativeId)
public static StrokeStyle.LineDash fromOoxmlId(int ooxmlId)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |