|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<BorderStyle> org.apache.poi.ss.usermodel.BorderStyle
public enum BorderStyle
The enumeration value indicating the line style of a border in a cell, i.e., whether it is bordered dash dot, dash dot dot, dashed, dotted, double, hair, medium, medium dash dot, medium dash dot dot, medium dashed, none, slant dash dot, thick or thin.
Enum Constant Summary | |
---|---|
DASH_DOT
dash-dot border |
|
DASH_DOT_DOT
dash-dot-dot border |
|
DASHED
dash border |
|
DOTTED
dot border |
|
DOUBLE
double-line border |
|
HAIR
hair-line border |
|
MEDIUM
Medium border |
|
MEDIUM_DASH_DOT
medium dash-dot border |
|
MEDIUM_DASH_DOT_DOT
medium dash-dot-dot border |
|
MEDIUM_DASHED
Medium dashed border |
|
NONE
No border (default) |
|
SLANTED_DASH_DOT
slanted dash-dot border |
|
THICK
Thick border |
|
THIN
Thin border |
Method Summary | |
---|---|
short |
getCode()
|
static BorderStyle |
valueOf(short code)
|
static BorderStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BorderStyle[] |
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 BorderStyle NONE
public static final BorderStyle THIN
public static final BorderStyle MEDIUM
public static final BorderStyle DASHED
public static final BorderStyle DOTTED
public static final BorderStyle THICK
public static final BorderStyle DOUBLE
public static final BorderStyle HAIR
public static final BorderStyle MEDIUM_DASHED
public static final BorderStyle DASH_DOT
public static final BorderStyle MEDIUM_DASH_DOT
public static final BorderStyle DASH_DOT_DOT
public static final BorderStyle MEDIUM_DASH_DOT_DOT
public static final BorderStyle SLANTED_DASH_DOT
Method Detail |
---|
public static BorderStyle[] values()
for (BorderStyle c : BorderStyle.values()) System.out.println(c);
public static BorderStyle 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 short getCode()
public static BorderStyle valueOf(short code)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |