public static enum Range.CellAttribute extends Enum<Range.CellAttribute>
Enum Constant and Description |
---|
ALL |
COMMENT |
MERGE |
SIZE |
STYLE |
TEXT |
Modifier and Type | Method and Description |
---|---|
static Range.CellAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Range.CellAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Range.CellAttribute ALL
public static final Range.CellAttribute TEXT
public static final Range.CellAttribute STYLE
public static final Range.CellAttribute SIZE
public static final Range.CellAttribute MERGE
public static final Range.CellAttribute COMMENT
public static Range.CellAttribute[] values()
for (Range.CellAttribute c : Range.CellAttribute.values()) System.out.println(c);
public static Range.CellAttribute 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.