public static enum DataIndex.TypeIndexEntry extends Enum<DataIndex.TypeIndexEntry> implements DataIndex.DataIndexEntry
Enum Constant and Description |
---|
BUFFER
Raw data buffer (refer to DiskBackedDataStore)
|
EDGE_STORE
Edges stored in edge store for a partition
|
MESSAGE
Partition messages
|
PARTITION
The whole partition
|
PARTITION_EDGES
Partition edges
|
PARTITION_VERTICES
Partition vertices
|
Modifier and Type | Method and Description |
---|---|
String |
getName() |
String |
toString() |
static DataIndex.TypeIndexEntry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataIndex.TypeIndexEntry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataIndex.TypeIndexEntry PARTITION
public static final DataIndex.TypeIndexEntry PARTITION_VERTICES
public static final DataIndex.TypeIndexEntry PARTITION_EDGES
public static final DataIndex.TypeIndexEntry MESSAGE
public static final DataIndex.TypeIndexEntry EDGE_STORE
public static final DataIndex.TypeIndexEntry BUFFER
public static DataIndex.TypeIndexEntry[] values()
for (DataIndex.TypeIndexEntry c : DataIndex.TypeIndexEntry.values()) System.out.println(c);
public static DataIndex.TypeIndexEntry 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 String getName()
public String toString()
toString
in class Enum<DataIndex.TypeIndexEntry>
Copyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.