Package org.apache.poi.ss.usermodel
Enum Class BorderStyle
- All Implemented Interfaces:
Serializable
,Comparable<BorderStyle>
,Constable
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptiondash-dot borderdash-dot-dot borderdash borderdot borderdouble-line borderhair-line borderMedium bordermedium dash-dot bordermedium dash-dot-dot borderMedium dashed borderNo border (default)slanted dash-dot borderThick borderThin border -
Method Summary
Modifier and TypeMethodDescriptionshort
getCode()
static BorderStyle
valueOf
(short code) Returns the enum constant of this class with the specified name.static BorderStyle
Returns the enum constant of this class with the specified name.static BorderStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No border (default) -
THIN
Thin border -
MEDIUM
Medium border -
DASHED
dash border -
DOTTED
dot border -
THICK
Thick border -
DOUBLE
double-line border -
HAIR
hair-line border -
MEDIUM_DASHED
Medium dashed border -
DASH_DOT
dash-dot border -
MEDIUM_DASH_DOT
medium dash-dot border -
DASH_DOT_DOT
dash-dot-dot border -
MEDIUM_DASH_DOT_DOT
medium dash-dot-dot border -
SLANTED_DASH_DOT
slanted dash-dot border
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getCode
public short getCode() -
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-