public enum ExcelUnderType extends Enum<ExcelUnderType>
Enum Constant and Description |
---|
DOUBLE
双下划线
|
DOUBLE_ACCOUNTING
双下划线 会计风格
|
NONE
无下划线
|
SINGLE
单下划线
|
SINGLE_ACCOUNTING
单下划线 会计风格
|
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
static ExcelUnderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelUnderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelUnderType NONE
public static final ExcelUnderType SINGLE
public static final ExcelUnderType DOUBLE
public static final ExcelUnderType SINGLE_ACCOUNTING
public static final ExcelUnderType DOUBLE_ACCOUNTING
public static ExcelUnderType[] values()
for (ExcelUnderType c : ExcelUnderType.values()) System.out.println(c);
public static ExcelUnderType 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 nullpublic int getCode()
Copyright © 2024. All rights reserved.