public static enum EntityMetadata.Type extends Enum<EntityMetadata.Type>
| Enum Constant and Description |
|---|
COLUMN_FAMILY
Denotes that the Entity is related to a ColumnFamily.
|
SUPER_COLUMN_FAMILY
Denotes that the Entity is related to a SuperColumnFamily.
|
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
isColumnFamilyMetadata()
Checks if is column family metadata.
|
abstract boolean |
isDocumentMetadata()
Checks if is Document metadata.
|
abstract boolean |
isSuperColumnFamilyMetadata()
Checks if is super column family metadata.
|
static EntityMetadata.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityMetadata.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityMetadata.Type COLUMN_FAMILY
public static final EntityMetadata.Type SUPER_COLUMN_FAMILY
public static EntityMetadata.Type[] values()
for (EntityMetadata.Type c : EntityMetadata.Type.values()) System.out.println(c);
public static EntityMetadata.Type 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 nullpublic abstract boolean isColumnFamilyMetadata()
public abstract boolean isSuperColumnFamilyMetadata()
public abstract boolean isDocumentMetadata()
Copyright © 2015. All Rights Reserved.