public enum ClientEventType extends Enum<ClientEventType> implements Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Enum Constant and Description |
---|
CUSTOM_LINE_ITEM_CANCELLED |
DELETED_LINE_ITEM |
LEFT_TABLE |
MOVED_TABLE |
WHILE_ADDING_LINE_ITEM_CANCELLED |
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<ClientEventType> |
CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier and Type | Method and Description |
---|---|
int |
describeContents() |
static ClientEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
writeToParcel(Parcel dest,
int flags) |
public static final ClientEventType DELETED_LINE_ITEM
public static final ClientEventType MOVED_TABLE
public static final ClientEventType LEFT_TABLE
public static final ClientEventType CUSTOM_LINE_ITEM_CANCELLED
public static final ClientEventType WHILE_ADDING_LINE_ITEM_CANCELLED
public static final Parcelable.Creator<ClientEventType> CREATOR
public static ClientEventType[] values()
for (ClientEventType c : ClientEventType.values()) System.out.println(c);
public static ClientEventType 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 int describeContents()
describeContents
in interface Parcelable
public void writeToParcel(Parcel dest, int flags)
writeToParcel
in interface Parcelable