public static enum Item.logMessageAction extends java.lang.Enum<Item.logMessageAction>
| Enum Constant and Description |
|---|
itemCustomMessage
Custom log message from user
|
itemDeleted
Item deleted
|
itemUpdatedName
Item name updated
|
itemUpdatedUserAccess
Updated user access to item
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
static Item.logMessageAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Item.logMessageAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Item.logMessageAction itemCustomMessage
public static final Item.logMessageAction itemUpdatedName
public static final Item.logMessageAction itemUpdatedUserAccess
public static final Item.logMessageAction itemDeleted
public static Item.logMessageAction[] values()
for (Item.logMessageAction c : Item.logMessageAction.values()) System.out.println(c);
public static Item.logMessageAction 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 java.lang.String getValue()