public static enum CellStyle.BorderType extends Enum<CellStyle.BorderType>
Enum Constant and Description |
---|
DASH_DOT |
DASH_DOT_DOT |
DASHED |
DOTTED |
DOUBLE |
HAIR |
MEDIUM |
MEDIUM_DASH_DOT |
MEDIUM_DASH_DOT_DOT |
MEDIUM_DASHED |
NONE |
SLANTED_DASH_DOT |
THICK |
THIN |
Modifier and Type | Method and Description |
---|---|
static CellStyle.BorderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellStyle.BorderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellStyle.BorderType NONE
public static final CellStyle.BorderType THIN
public static final CellStyle.BorderType MEDIUM
public static final CellStyle.BorderType DASHED
public static final CellStyle.BorderType HAIR
public static final CellStyle.BorderType THICK
public static final CellStyle.BorderType DOUBLE
public static final CellStyle.BorderType DOTTED
public static final CellStyle.BorderType MEDIUM_DASHED
public static final CellStyle.BorderType DASH_DOT
public static final CellStyle.BorderType MEDIUM_DASH_DOT
public static final CellStyle.BorderType DASH_DOT_DOT
public static final CellStyle.BorderType MEDIUM_DASH_DOT_DOT
public static final CellStyle.BorderType SLANTED_DASH_DOT
public static CellStyle.BorderType[] values()
for (CellStyle.BorderType c : CellStyle.BorderType.values()) System.out.println(c);
public static CellStyle.BorderType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.