| Enum Constant and Description |
|---|
HBASE
The Apache HBase database.
|
NOSQL
The Oracle NoSQL database.
|
RDBMS
The Oracle RDBMS.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toKey() |
static DbEngine |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DbEngine[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final DbEngine HBASE
public static final DbEngine NOSQL
public static final DbEngine RDBMS
public java.lang.String toKey()
public static DbEngine 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 DbEngine[] values()
for (DbEngine c : DbEngine.values())
System.out.println(c);
Copyright © 2017 Oracle Corp. All Rights Reserved.