Package org.apache.poi.ss.usermodel
Enum BorderStyle
- java.lang.Object
-
- java.lang.Enum<BorderStyle>
-
- org.apache.poi.ss.usermodel.BorderStyle
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BorderStyle>
public enum BorderStyle extends java.lang.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
Enum Constants Enum Constant Description DASH_DOT
dash-dot borderDASH_DOT_DOT
dash-dot-dot borderDASHED
dash borderDOTTED
dot borderDOUBLE
double-line borderHAIR
hair-line borderMEDIUM
Medium borderMEDIUM_DASH_DOT
medium dash-dot borderMEDIUM_DASH_DOT_DOT
medium dash-dot-dot borderMEDIUM_DASHED
Medium dashed borderNONE
No border (default)SLANTED_DASH_DOT
slanted dash-dot borderTHICK
Thick borderTHIN
Thin border
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description short
getCode()
static BorderStyle
valueOf(short code)
Returns the enum constant of this type with the specified name.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.
-
-
-
Enum Constant Detail
-
NONE
public static final BorderStyle NONE
No border (default)
-
THIN
public static final BorderStyle THIN
Thin border
-
MEDIUM
public static final BorderStyle MEDIUM
Medium border
-
DASHED
public static final BorderStyle DASHED
dash border
-
DOTTED
public static final BorderStyle DOTTED
dot border
-
THICK
public static final BorderStyle THICK
Thick border
-
DOUBLE
public static final BorderStyle DOUBLE
double-line border
-
HAIR
public static final BorderStyle HAIR
hair-line border
-
MEDIUM_DASHED
public static final BorderStyle MEDIUM_DASHED
Medium dashed border
-
DASH_DOT
public static final BorderStyle DASH_DOT
dash-dot border
-
MEDIUM_DASH_DOT
public static final BorderStyle MEDIUM_DASH_DOT
medium dash-dot border
-
DASH_DOT_DOT
public static final BorderStyle DASH_DOT_DOT
dash-dot-dot border
-
MEDIUM_DASH_DOT_DOT
public static final BorderStyle MEDIUM_DASH_DOT_DOT
medium dash-dot-dot border
-
SLANTED_DASH_DOT
public static final BorderStyle SLANTED_DASH_DOT
slanted dash-dot border
-
-
Method Detail
-
values
public static BorderStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BorderStyle c : BorderStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BorderStyle valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getCode
public short getCode()
-
valueOf
public static BorderStyle valueOf(short code)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
code
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-