public enum CheckStatus extends java.lang.Enum<CheckStatus>
| Enum Constant and Description |
|---|
NEW |
RETURNED |
TRANSACTED |
| Modifier and Type | Method and Description |
|---|---|
static CheckStatus |
fromProcessStatusId(int processStatusId) |
byte |
getId() |
int |
getProcessStatusId() |
java.lang.String |
getTitle() |
void |
setId(byte id) |
void |
setProcessStatusId(int processStatusId) |
void |
setTitle(java.lang.String title) |
static CheckStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckStatus NEW
public static final CheckStatus TRANSACTED
public static final CheckStatus RETURNED
public static CheckStatus[] values()
for (CheckStatus c : CheckStatus.values()) System.out.println(c);
public static CheckStatus 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 nullpublic static CheckStatus fromProcessStatusId(int processStatusId)
public byte getId()
public void setId(byte id)
public java.lang.String getTitle()
public void setTitle(java.lang.String title)
public int getProcessStatusId()
public void setProcessStatusId(int processStatusId)