public static enum SpreadsheetView.SpanType extends java.lang.Enum<SpreadsheetView.SpanType>
SpreadsheetView. Suppose you
have a cell spanning in row, the first one is in a ROW_VISIBLE state, and
all the other below are in a ROW_SPAN_INVISIBLE state. But if the user is
scrolling down, the first will go out of sight. At that moment, the
second cell is switching from ROW_SPAN_INVISIBLE state to ROW_VISIBLE
state. 
SpreadsheetView for more information.| Enum Constant and Description |
|---|
BOTH_INVISIBLE
Invisible cell situated in diagonal of a cell in a ROW_VISIBLE state.
|
COLUMN_SPAN_INVISIBLE
Invisible cell because a cell in a NORMAL_CELL state on the left is
covering it.
|
NORMAL_CELL
Visible cell, can be a unique cell (no span) or the first one inside
a column spanning cell.
|
ROW_SPAN_INVISIBLE
Invisible cell because a cell in a ROW_VISIBLE state on the top is
covering it.
|
ROW_VISIBLE
Visible Cell but has some cells below in a ROW_SPAN_INVISIBLE state.
|
| Modifier and Type | Method and Description |
|---|---|
static SpreadsheetView.SpanType |
valueOf(java.lang.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_SPAN_INVISIBLE
public static final SpreadsheetView.SpanType ROW_SPAN_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(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 null