Package hydra.cypher.features
Class LoadCSVFunctionFeatures
- java.lang.Object
-
- hydra.cypher.features.LoadCSVFunctionFeatures
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LoadCSVFunctionFeatures>
public class LoadCSVFunctionFeatures extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<LoadCSVFunctionFeatures>
Load CSV functions- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.BooleanfileThe file() function.static NameFILEName of thehydra.cypher.features.LoadCSVFunctionFeatures.filefield.java.lang.BooleanlinenumberThe linenumber() function.static NameLINENUMBERName of thehydra.cypher.features.LoadCSVFunctionFeatures.linenumberfield.static NameTYPE_Name of thehydra.cypher.features.LoadCSVFunctionFeaturestype.
-
Constructor Summary
Constructors Constructor Description LoadCSVFunctionFeatures(java.lang.Boolean file, java.lang.Boolean linenumber)Constructs an immutableLoadCSVFunctionFeatures.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(LoadCSVFunctionFeatures other)booleanequals(java.lang.Object other)inthashCode()LoadCSVFunctionFeatureswithFile(java.lang.Boolean file)Returns a copy of thisLoadCSVFunctionFeatureswithfilereplaced.LoadCSVFunctionFeatureswithLinenumber(java.lang.Boolean linenumber)Returns a copy of thisLoadCSVFunctionFeatureswithlinenumberreplaced.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thehydra.cypher.features.LoadCSVFunctionFeaturestype.
-
FILE
public static final Name FILE
Name of thehydra.cypher.features.LoadCSVFunctionFeatures.filefield.
-
LINENUMBER
public static final Name LINENUMBER
Name of thehydra.cypher.features.LoadCSVFunctionFeatures.linenumberfield.
-
file
public final java.lang.Boolean file
The file() function. Returns the absolute path of the file that LOAD CSV is using.
-
linenumber
public final java.lang.Boolean linenumber
The linenumber() function. Returns the line number that LOAD CSV is currently using.
-
-
Constructor Detail
-
LoadCSVFunctionFeatures
public LoadCSVFunctionFeatures(java.lang.Boolean file, java.lang.Boolean linenumber)Constructs an immutableLoadCSVFunctionFeatures.- Parameters:
file- The file() function. Returns the absolute path of the file that LOAD CSV is using.linenumber- The linenumber() function. Returns the line number that LOAD CSV is currently using.
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
compareTo
public int compareTo(LoadCSVFunctionFeatures other)
- Specified by:
compareToin interfacejava.lang.Comparable<LoadCSVFunctionFeatures>
-
withFile
public LoadCSVFunctionFeatures withFile(java.lang.Boolean file)
Returns a copy of thisLoadCSVFunctionFeatureswithfilereplaced.
-
withLinenumber
public LoadCSVFunctionFeatures withLinenumber(java.lang.Boolean linenumber)
Returns a copy of thisLoadCSVFunctionFeatureswithlinenumberreplaced.
-
-