public enum WriteLastRowTypeEnum extends Enum<WriteLastRowTypeEnum>
| Enum Constant and Description |
|---|
COMMON_EMPTY
Excel are created without templates ,And any data has been written;
|
HAS_DATA
Any data has been written;
|
TEMPLATE_EMPTY
Excel are created with templates ,And any data has been written;
|
| Modifier and Type | Method and Description |
|---|---|
static WriteLastRowTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WriteLastRowTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WriteLastRowTypeEnum COMMON_EMPTY
public static final WriteLastRowTypeEnum TEMPLATE_EMPTY
public static final WriteLastRowTypeEnum HAS_DATA
public static WriteLastRowTypeEnum[] values()
for (WriteLastRowTypeEnum c : WriteLastRowTypeEnum.values()) System.out.println(c);
public static WriteLastRowTypeEnum 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.