public enum KRecordStatus extends java.lang.Enum<KRecordStatus>
Enum Constant and Description |
---|
rsDelete |
rsImpossible |
rsLoaded |
rsNew |
rsNone |
rsUpdate |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCaption() |
int |
getLabel() |
void |
setCaption(java.lang.String caption) |
void |
setLabel(int value) |
java.lang.String |
toString() |
static KRecordStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KRecordStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KRecordStatus rsNone
public static final KRecordStatus rsUpdate
public static final KRecordStatus rsNew
public static final KRecordStatus rsDelete
public static final KRecordStatus rsLoaded
public static final KRecordStatus rsImpossible
public static KRecordStatus[] values()
for (KRecordStatus c : KRecordStatus.values()) System.out.println(c);
public static KRecordStatus 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 int getLabel()
public void setLabel(int value)
public java.lang.String getCaption()
public void setCaption(java.lang.String caption)
public java.lang.String toString()
toString
in class java.lang.Enum<KRecordStatus>