|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Record>
org.neo4j.kernel.impl.nioneo.store.Record
public enum Record
Various constants used in records for different stores.
| Method Summary | |
|---|---|
byte |
byteValue()
Returns a byte value representation for this record type. |
int |
intValue()
Returns a int value representation for this record type. |
boolean |
value(long value)
|
static Record |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Record[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Record NOT_IN_USE
public static final Record IN_USE
public static final Record RESERVED
public static final Record NO_NEXT_PROPERTY
public static final Record NO_PREVIOUS_PROPERTY
public static final Record NO_NEXT_RELATIONSHIP
public static final Record NO_PREV_RELATIONSHIP
public static final Record NOT_DIRECTED
public static final Record DIRECTED
public static final Record NO_NEXT_BLOCK
public static final Record NO_PREV_BLOCK
public static final Record NODE_PROPERTY
public static final Record REL_PROPERTY
| Method Detail |
|---|
public static Record[] values()
for (Record c : Record.values()) System.out.println(c);
public static Record valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic byte byteValue()
public int intValue()
public boolean value(long value)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||