java.io.Serializable, java.lang.Comparable<Depth>, oracle.kv.impl.util.FastExternalizablepublic enum Depth extends java.lang.Enum<Depth> implements oracle.kv.impl.util.FastExternalizable
| Enum Constant | Description |
|---|---|
CHILDREN_ONLY |
Select only immediate children, do not select the parent.
|
DESCENDANTS_ONLY |
Select all descendants, do not select the parent.
|
PARENT_AND_CHILDREN |
Select immediate children and the parent.
|
PARENT_AND_DESCENDANTS |
Select all descendants and the parent.
|
| Modifier and Type | Method | Description |
|---|---|---|
static Depth |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Depth[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Depth CHILDREN_ONLY
public static final Depth PARENT_AND_CHILDREN
public static final Depth DESCENDANTS_ONLY
public static final Depth PARENT_AND_DESCENDANTS
public static Depth[] values()
for (Depth c : Depth.values()) System.out.println(c);
public static Depth 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 nullCopyright (c) 2011, 2018 Oracle and/or its affiliates. All rights reserved.