Package org.neo4j.gds.api
Enum PropertyCursor.EmptyPropertyCursor
- java.lang.Object
-
- java.lang.Enum<PropertyCursor.EmptyPropertyCursor>
-
- org.neo4j.gds.api.PropertyCursor.EmptyPropertyCursor
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.AutoCloseable,java.lang.Comparable<PropertyCursor.EmptyPropertyCursor>,PropertyCursor
- Enclosing interface:
- PropertyCursor
public static enum PropertyCursor.EmptyPropertyCursor extends java.lang.Enum<PropertyCursor.EmptyPropertyCursor> implements PropertyCursor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.neo4j.gds.api.PropertyCursor
PropertyCursor.EmptyPropertyCursor
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanhasNextLong()Return true iff there is at least one more target to decode.voidinit(long index, int degree)Initialize this cursor to point to the givenindex.longnextLong()Read the next target id.static PropertyCursor.EmptyPropertyCursorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PropertyCursor.EmptyPropertyCursor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final PropertyCursor.EmptyPropertyCursor INSTANCE
-
-
Method Detail
-
values
public static PropertyCursor.EmptyPropertyCursor[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PropertyCursor.EmptyPropertyCursor c : PropertyCursor.EmptyPropertyCursor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyCursor.EmptyPropertyCursor valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
init
public void init(long index, int degree)Description copied from interface:PropertyCursorInitialize this cursor to point to the givenindex. The correct value for the index is highly implementation specific. The better way to initialize a cursor is throughAdjacencyProperties.propertyCursor(long)or related.- Specified by:
initin interfacePropertyCursor
-
hasNextLong
public boolean hasNextLong()
Description copied from interface:PropertyCursorReturn true iff there is at least one more target to decode.- Specified by:
hasNextLongin interfacePropertyCursor
-
nextLong
public long nextLong()
Description copied from interface:PropertyCursorRead the next target id. It is undefined behavior if this is called afterPropertyCursor.hasNextLong()returnsfalse.- Specified by:
nextLongin interfacePropertyCursor
-
close
public void close()
- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacePropertyCursor
-
-