public static enum ReportDataEntry.Type extends Enum<ReportDataEntry.Type>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DURATION |
LINK |
NUMBER |
PERCENTAGE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static ReportDataEntry.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportDataEntry.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportDataEntry.Type BOOLEAN
public static final ReportDataEntry.Type DATE
public static final ReportDataEntry.Type DURATION
public static final ReportDataEntry.Type LINK
public static final ReportDataEntry.Type NUMBER
public static final ReportDataEntry.Type PERCENTAGE
public static final ReportDataEntry.Type TEXT
public static ReportDataEntry.Type[] values()
for (ReportDataEntry.Type c : ReportDataEntry.Type.values()) System.out.println(c);
public static ReportDataEntry.Type 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 © 2020 Atlassian. All rights reserved.