java.io.Serializable
, java.lang.Comparable<BorderStyle>
public enum BorderStyle extends java.lang.Enum<BorderStyle>
Enum Constant | Description |
---|---|
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_DOTC |
medium dash-dot-dot border
|
MEDIUM_DASHED |
Medium dashed border
|
NONE |
No border
|
SLANTED_DASH_DOT |
slanted dash-dot border
|
THICK |
Thick border
|
THIN |
Thin border
|
Modifier and Type | Method | Description |
---|---|---|
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.
|
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_DOTC
public static final BorderStyle SLANTED_DASH_DOT
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 namejava.lang.NullPointerException
- if the argument is nullCopyright 2018 The Apache Software Foundation or its licensors, as applicable.