public enum DataArrangementType extends java.lang.Enum<DataArrangementType>
@ExcelSheet(sheetName = "Person"arrangement = DataArrangementType.ROW)private Collection<Person> people;
| Enum Constant and Description |
|---|
COLUMN
Data is arranged in columns.
|
ROW
Data is arranged in rows.
|
| Modifier and Type | Method and Description |
|---|---|
static DataArrangementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataArrangementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataArrangementType ROW
public static final DataArrangementType COLUMN
public static DataArrangementType[] values()
for (DataArrangementType c : DataArrangementType.values()) System.out.println(c);
public static DataArrangementType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018. All rights reserved.