public static enum SpreadsheetView.SpanType extends Enum<SpreadsheetView.SpanType>
| Enum Constant and Description |
|---|
BOTH_INVISIBLE |
COLUMN_INVISIBLE |
NORMAL_CELL |
ROW_INVISIBLE |
ROW_VISIBLE |
| Modifier and Type | Method and Description |
|---|---|
static SpreadsheetView.SpanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpreadsheetView.SpanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpreadsheetView.SpanType NORMAL_CELL
public static final SpreadsheetView.SpanType COLUMN_INVISIBLE
public static final SpreadsheetView.SpanType ROW_INVISIBLE
public static final SpreadsheetView.SpanType ROW_VISIBLE
public static final SpreadsheetView.SpanType BOTH_INVISIBLE
public static SpreadsheetView.SpanType[] values()
for (SpreadsheetView.SpanType c : SpreadsheetView.SpanType.values()) System.out.println(c);
public static SpreadsheetView.SpanType 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