public static enum Ref.RefType extends Enum<Ref.RefType>
Enum Constant and Description |
---|
AREA |
BOOK |
CELL |
CONDITIONAL |
INDIRECT |
NAME |
OBJECT |
SHEET |
STYLE |
TABLE |
Modifier and Type | Method and Description |
---|---|
static Ref.RefType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ref.RefType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ref.RefType CELL
public static final Ref.RefType AREA
public static final Ref.RefType SHEET
public static final Ref.RefType BOOK
public static final Ref.RefType NAME
public static final Ref.RefType OBJECT
public static final Ref.RefType INDIRECT
public static final Ref.RefType TABLE
public static final Ref.RefType CONDITIONAL
public static final Ref.RefType STYLE
public static Ref.RefType[] values()
for (Ref.RefType c : Ref.RefType.values()) System.out.println(c);
public static Ref.RefType 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.