public static enum RowRecord.ColumnKind extends Enum<RowRecord.ColumnKind>
Distinguishes an atomic value, a content structure such as a document or other node, and a null value.
| Enum Constant and Description |
|---|
ATOMIC_VALUE |
CONTENT |
NULL |
| Modifier and Type | Method and Description |
|---|---|
static RowRecord.ColumnKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowRecord.ColumnKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowRecord.ColumnKind ATOMIC_VALUE
public static final RowRecord.ColumnKind CONTENT
public static final RowRecord.ColumnKind NULL
public static RowRecord.ColumnKind[] values()
for (RowRecord.ColumnKind c : RowRecord.ColumnKind.values()) System.out.println(c);
public static RowRecord.ColumnKind 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 © 2013-2017 MarkLogic Corporation.