public static enum TransactionDao.SearchType extends java.lang.Enum<TransactionDao.SearchType>
| Enum Constant and Description |
|---|
DEFAULT |
INCLUDE_REQUEST |
INCLUDE_REQUEST_RESPONSE |
INCLUDE_RESPONSE |
| Modifier and Type | Method and Description |
|---|---|
static TransactionDao.SearchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionDao.SearchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionDao.SearchType DEFAULT
public static final TransactionDao.SearchType INCLUDE_REQUEST
public static final TransactionDao.SearchType INCLUDE_RESPONSE
public static final TransactionDao.SearchType INCLUDE_REQUEST_RESPONSE
public static TransactionDao.SearchType[] values()
for (TransactionDao.SearchType c : TransactionDao.SearchType.values()) System.out.println(c);
public static TransactionDao.SearchType 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 null