public enum CellExtraTypeEnum extends Enum<CellExtraTypeEnum>
| Enum Constant and Description |
|---|
COMMENT
Comment
|
HYPERLINK
Hyperlink
|
MERGE
Merge
|
| Modifier and Type | Method and Description |
|---|---|
static CellExtraTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellExtraTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellExtraTypeEnum COMMENT
public static final CellExtraTypeEnum HYPERLINK
public static final CellExtraTypeEnum MERGE
public static CellExtraTypeEnum[] values()
for (CellExtraTypeEnum c : CellExtraTypeEnum.values()) System.out.println(c);
public static CellExtraTypeEnum 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–2023 Alibaba Group. All rights reserved.