public enum ExcelLineStyle extends Enum<ExcelLineStyle>
Enum Constant and Description |
---|
Continuous |
Dash |
DashDot |
DashDotDot |
Dot |
Double |
None |
SlantDashDot |
Modifier and Type | Method and Description |
---|---|
static ExcelLineStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelLineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelLineStyle None
public static final ExcelLineStyle Continuous
public static final ExcelLineStyle Dash
public static final ExcelLineStyle Dot
public static final ExcelLineStyle DashDot
public static final ExcelLineStyle DashDotDot
public static final ExcelLineStyle SlantDashDot
public static final ExcelLineStyle Double
public static ExcelLineStyle[] values()
for (ExcelLineStyle c : ExcelLineStyle.values()) System.out.println(c);
public static ExcelLineStyle 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 null