Package ch.rabanti.picoxlsx4j.style
Enum Border.StyleValue
- java.lang.Object
-
- java.lang.Enum<Border.StyleValue>
-
- ch.rabanti.picoxlsx4j.style.Border.StyleValue
-
- All Implemented Interfaces:
Serializable
,Comparable<Border.StyleValue>
- Enclosing class:
- Border
public static enum Border.StyleValue extends Enum<Border.StyleValue>
Enum for the border style
-
-
Enum Constant Summary
Enum Constants Enum Constant Description dashDot
dash-dotted borderdashDotDot
dashed border with double-dotsdashed
dashed borderdotted
dotted borderhair
hair bordermedium
medium bordermediumDashDot
medium dash-dotted bordermediumDashDotDot
medium-dashed border with double-dotsmediumDashed
medium dashed bordernone
no borders_double
double borderslantDashDot
slant dash-dotted borderthick
thick borderthin
thin border
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static Border.StyleValue
valueOf(String name)
Returns the enum constant of this type with the specified name.static Border.StyleValue[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
none
public static final Border.StyleValue none
no border
-
hair
public static final Border.StyleValue hair
hair border
-
dotted
public static final Border.StyleValue dotted
dotted border
-
dashDotDot
public static final Border.StyleValue dashDotDot
dashed border with double-dots
-
dashDot
public static final Border.StyleValue dashDot
dash-dotted border
-
dashed
public static final Border.StyleValue dashed
dashed border
-
thin
public static final Border.StyleValue thin
thin border
-
mediumDashDotDot
public static final Border.StyleValue mediumDashDotDot
medium-dashed border with double-dots
-
slantDashDot
public static final Border.StyleValue slantDashDot
slant dash-dotted border
-
mediumDashDot
public static final Border.StyleValue mediumDashDot
medium dash-dotted border
-
mediumDashed
public static final Border.StyleValue mediumDashed
medium dashed border
-
medium
public static final Border.StyleValue medium
medium border
-
thick
public static final Border.StyleValue thick
thick border
-
s_double
public static final Border.StyleValue s_double
double border
-
-
Method Detail
-
values
public static Border.StyleValue[] 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 (Border.StyleValue c : Border.StyleValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Border.StyleValue valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()
-
-