public enum BorderLineStyle extends java.lang.Enum<BorderLineStyle>
| Enum Constant and Description |
|---|
DashDot
Specifies a dash dot border.
|
DashDotDot
Specifies a dash dot dot border.
|
Dashed
Specifies a dashed border.
|
Dotted
Specifies a dotted border.
|
Double
Specifies a double line.
|
Hair
Specifies a hairline border.
|
Medium
Specifies a medium border.
|
MediumDashDot
Specifies a medium dash dot border.
|
MediumDashDotDot
Specifies a medium dash dot dot border.
|
MediumDashed
Specifies a medium dashed.
|
None
Specifies no border.
|
SlantDashDot
Specifies a slant dash dot border.
|
Thick
Specifies a thick line border.
|
Thin
Specifies a thin border.
|
| Modifier and Type | Method and Description |
|---|---|
static BorderLineStyle |
forValue(int value) |
int |
getValue() |
static BorderLineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BorderLineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderLineStyle None
public static final BorderLineStyle Hair
public static final BorderLineStyle DashDotDot
public static final BorderLineStyle DashDot
public static final BorderLineStyle Dotted
public static final BorderLineStyle Dashed
public static final BorderLineStyle Thin
public static final BorderLineStyle MediumDashDotDot
public static final BorderLineStyle SlantDashDot
public static final BorderLineStyle MediumDashDot
public static final BorderLineStyle MediumDashed
public static final BorderLineStyle Medium
public static final BorderLineStyle Thick
public static final BorderLineStyle Double
public static BorderLineStyle[] values()
for (BorderLineStyle c : BorderLineStyle.values()) System.out.println(c);
public static BorderLineStyle 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 namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static BorderLineStyle forValue(int value)