public enum RowType extends Enum<RowType>
| Enum Constant and Description |
|---|
HEADER |
ROW |
SECTION |
SUMMARYROW |
| Modifier and Type | Method and Description |
|---|---|
static RowType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static RowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowType HEADER
public static final RowType SECTION
public static final RowType ROW
public static final RowType SUMMARYROW
public static RowType[] values()
for (RowType c : RowType.values()) System.out.println(c);
public static RowType 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 String getValue()
Copyright © 2020. All rights reserved.