|
Oracle NoSQL Database version 11gR2.2.0.26 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Value.Format>
oracle.kv.Value.Format
public static enum Value.Format
Identifies the format of a value.
| Enum Constant Summary | |
|---|---|
AVRO
The byte array format is Avro binary data along with an internal, embedded schema ID. |
|
NONE
The byte array format is not known to the store; the format is known only to the application. |
|
| Method Summary | |
|---|---|
static Value.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Value.Format[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Value.Format NONE
NONE are created
with Value.createValue(byte[]). All values created using NoSQL DB
version 1.x have format NONE.
public static final Value.Format AVRO
AVRO are created and
decomposed using an AvroBinding.
| Method Detail |
|---|
public static Value.Format[] values()
for (Value.Format c : Value.Format.values()) System.out.println(c);
public static Value.Format valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
Oracle NoSQL Database version 11gR2.2.0.26 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||