public static enum SpreadsheetStyleFactory.BorderStyle extends Enum<SpreadsheetStyleFactory.BorderStyle>
| Enum Constant and Description |
|---|
DASHED_MEDIUM |
DASHED_THIN |
DOTTED_THIN |
DOUBLE |
NONE |
SOLID_MEDIUM |
SOLID_THICK |
SOLID_THIN |
| Modifier and Type | Method and Description |
|---|---|
String |
getBorderAttributeValue()
Returns the complete border attribute value for CSS
|
int |
getSize()
Returns the thickness of this border
|
String |
getValue()
Returns the CSS name of this border style
|
static SpreadsheetStyleFactory.BorderStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpreadsheetStyleFactory.BorderStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpreadsheetStyleFactory.BorderStyle SOLID_THIN
public static final SpreadsheetStyleFactory.BorderStyle DOTTED_THIN
public static final SpreadsheetStyleFactory.BorderStyle DASHED_THIN
public static final SpreadsheetStyleFactory.BorderStyle SOLID_MEDIUM
public static final SpreadsheetStyleFactory.BorderStyle DASHED_MEDIUM
public static final SpreadsheetStyleFactory.BorderStyle SOLID_THICK
public static final SpreadsheetStyleFactory.BorderStyle DOUBLE
public static final SpreadsheetStyleFactory.BorderStyle NONE
public static SpreadsheetStyleFactory.BorderStyle[] values()
for (SpreadsheetStyleFactory.BorderStyle c : SpreadsheetStyleFactory.BorderStyle.values()) System.out.println(c);
public static SpreadsheetStyleFactory.BorderStyle 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 nullpublic String getValue()
public int getSize()
public String getBorderAttributeValue()
Copyright © 2013–2026 Vaadin Ltd. All rights reserved.