public enum ESMLCommand extends Enum<ESMLCommand> implements com.helger.commons.name.IHasName
| Enum Constant and Description |
|---|
CREATE |
DELETE |
LIST |
MIGRATE |
PREPARETOMIGRATE |
READ |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ESMLCommand |
getFromNameOrNull(String sName) |
String |
getName() |
static ESMLCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ESMLCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ESMLCommand CREATE
public static final ESMLCommand DELETE
public static final ESMLCommand UPDATE
public static final ESMLCommand READ
public static final ESMLCommand LIST
public static final ESMLCommand PREPARETOMIGRATE
public static final ESMLCommand MIGRATE
public static ESMLCommand[] values()
for (ESMLCommand c : ESMLCommand.values()) System.out.println(c);
public static ESMLCommand 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 null@Nonnull @Nonempty public String getName()
getName in interface com.helger.commons.name.IHasName@Nullable public static ESMLCommand getFromNameOrNull(@Nullable String sName)
Copyright © 2015–2019 Philip Helger. All rights reserved.