public static enum Value.Format extends Enum<Value.Format>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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.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 nameNullPointerException - if the argument is nullCopyright (c) 2011, 2013 Oracle and/or its affiliates. All rights reserved.