Package oracle.kv
Enum Depth
- All Implemented Interfaces:
- Serializable,- Comparable<Depth>,- oracle.kv.impl.util.FastExternalizable
Used with multiple-key and iterator operations to specify whether to select
 (return or operate on) the key-value pair for the parent key, and the
 key-value pairs for only immediate children or all descendants.
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionSelect only immediate children, do not select the parent.Select all descendants, do not select the parent.Select immediate children and the parent.Select all descendants and the parent.
- 
Method SummaryMethods inherited from class java.lang.Enumclone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface oracle.kv.impl.util.FastExternalizabledeserializedForm
- 
Enum Constant Details- 
CHILDREN_ONLYSelect only immediate children, do not select the parent.
- 
PARENT_AND_CHILDRENSelect immediate children and the parent.
- 
DESCENDANTS_ONLYSelect all descendants, do not select the parent.
- 
PARENT_AND_DESCENDANTSSelect all descendants and the parent.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-