public static enum Report.Type extends Enum<Report.Type>
| Enum Constant and Description |
|---|
ORDERS |
TRANSACTIONS |
TRANSFERS |
| Modifier and Type | Method and Description |
|---|---|
static Report.Type |
create(String val) |
String |
toString() |
static Report.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Report.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Report.Type TRANSACTIONS
public static final Report.Type ORDERS
public static final Report.Type TRANSFERS
public static Report.Type[] values()
for (Report.Type c : Report.Type.values()) System.out.println(c);
public static Report.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 nullpublic String toString()
toString in class Enum<Report.Type>public static Report.Type create(String val)
Copyright © 2014. All rights reserved.