public enum HubDatabase extends java.lang.Enum<HubDatabase>
| Modifier and Type | Method and Description |
|---|---|
static HubDatabase |
getHubDatabase(java.lang.String database) |
java.lang.String |
toString() |
static HubDatabase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HubDatabase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HubDatabase STAGING
public static final HubDatabase FINAL
public static HubDatabase[] values()
for (HubDatabase c : HubDatabase.values()) System.out.println(c);
public static HubDatabase 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 static HubDatabase getHubDatabase(java.lang.String database)
public java.lang.String toString()
toString in class java.lang.Enum<HubDatabase>