public static enum ExcelColumn.ExcelAlign extends Enum<ExcelColumn.ExcelAlign>
| Enum Constant and Description |
|---|
Center
Center 정렬
|
DefaultByType
데이터 타입에 따라 정렬
|
Left
Left 정렬
|
Right
Right 정렬
|
| Modifier and Type | Method and Description |
|---|---|
static ExcelColumn.ExcelAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelColumn.ExcelAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelColumn.ExcelAlign DefaultByType
public static final ExcelColumn.ExcelAlign Left
public static final ExcelColumn.ExcelAlign Center
public static final ExcelColumn.ExcelAlign Right
public static ExcelColumn.ExcelAlign[] values()
for (ExcelColumn.ExcelAlign c : ExcelColumn.ExcelAlign.values()) System.out.println(c);
public static ExcelColumn.ExcelAlign 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. All rights reserved.