public static enum CommandPersistenceNotification.Type extends java.lang.Enum<CommandPersistenceNotification.Type>
| Enum Constant and Description |
|---|
REMOVED
O comando foi removido.
|
SAVED
O comando foi salvo.
|
UPDATED
O comando foi atualizado.
|
| Modifier and Type | Method and Description |
|---|---|
static CommandPersistenceNotification.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandPersistenceNotification.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandPersistenceNotification.Type REMOVED
public static final CommandPersistenceNotification.Type SAVED
public static final CommandPersistenceNotification.Type UPDATED
public static CommandPersistenceNotification.Type[] values()
for (CommandPersistenceNotification.Type c : CommandPersistenceNotification.Type.values()) System.out.println(c);
public static CommandPersistenceNotification.Type 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 nullCopyright © 2018. All Rights Reserved.