public enum HolderEnum extends Enum<HolderEnum>
| Enum Constant and Description |
|---|
ROW
row
|
SHEET
sheet
|
TABLE
table
|
WORKBOOK
workbook
|
| Modifier and Type | Method and Description |
|---|---|
static HolderEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HolderEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HolderEnum WORKBOOK
public static final HolderEnum SHEET
public static final HolderEnum TABLE
public static final HolderEnum ROW
public static HolderEnum[] values()
for (HolderEnum c : HolderEnum.values()) System.out.println(c);
public static HolderEnum 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 © 2018–2022 Alibaba Group. All rights reserved.