public enum BackendType extends java.lang.Enum<BackendType>
Modifier and Type | Method and Description |
---|---|
static BackendType
|
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BackendType[]
|
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackendType FILE
public static final BackendType MYSQL
public static BackendType[] values()
for (BackendType c : BackendType.values()) System.out.println(c);
public static BackendType 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 name
java.lang.NullPointerException
- if the argument is null