Package org.neo4j.gds.doc.syntax
Enum SyntaxMode
- java.lang.Object
-
- java.lang.Enum<SyntaxMode>
-
- org.neo4j.gds.doc.syntax.SyntaxMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SyntaxMode>
public enum SyntaxMode extends java.lang.Enum<SyntaxMode>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description booleanhasParameters
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringmode()static SyntaxModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SyntaxMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATS
public static final SyntaxMode STATS
-
STREAM
public static final SyntaxMode STREAM
-
MUTATE
public static final SyntaxMode MUTATE
-
WRITE
public static final SyntaxMode WRITE
-
TRAIN
public static final SyntaxMode TRAIN
-
ESTIMATE
public static final SyntaxMode ESTIMATE
-
GRAPH_DROP
public static final SyntaxMode GRAPH_DROP
-
MODEL_DROP
public static final SyntaxMode MODEL_DROP
-
GRAPH_CREATE
public static final SyntaxMode GRAPH_CREATE
-
GRAPH_CREATE_CYPHER
public static final SyntaxMode GRAPH_CREATE_CYPHER
-
STREAM_NODE_PROPERTIES
public static final SyntaxMode STREAM_NODE_PROPERTIES
-
STREAM_SINGLE_PROPERTY
public static final SyntaxMode STREAM_SINGLE_PROPERTY
-
GRAPH_EXISTS
public static final SyntaxMode GRAPH_EXISTS
-
MODEL_EXISTS
public static final SyntaxMode MODEL_EXISTS
-
GRAPH_EXPORT
public static final SyntaxMode GRAPH_EXPORT
-
CREATE_SUBGRAPH
public static final SyntaxMode CREATE_SUBGRAPH
-
REMOVE
public static final SyntaxMode REMOVE
-
DELETE_RELATIONSHIPS
public static final SyntaxMode DELETE_RELATIONSHIPS
-
GRAPH_LIST
public static final SyntaxMode GRAPH_LIST
-
MODEL_LIST
public static final SyntaxMode MODEL_LIST
-
MODEL_PUBLISH
public static final SyntaxMode MODEL_PUBLISH
-
MODEL_STORE
public static final SyntaxMode MODEL_STORE
-
MODEL_LOAD
public static final SyntaxMode MODEL_LOAD
-
MODEL_DELETE
public static final SyntaxMode MODEL_DELETE
-
PIPELINE_CREATE
public static final SyntaxMode PIPELINE_CREATE
-
PIPELINE_ADD_NODE_PROPERTY
public static final SyntaxMode PIPELINE_ADD_NODE_PROPERTY
-
PIPELINE_ADD_FEATURE
public static final SyntaxMode PIPELINE_ADD_FEATURE
-
PIPELINE_CONFIGURE_SPLIT
public static final SyntaxMode PIPELINE_CONFIGURE_SPLIT
-
PIPELINE_CONFIGURE_PARAMS
public static final SyntaxMode PIPELINE_CONFIGURE_PARAMS
-
SYSTEM_MONITOR
public static final SyntaxMode SYSTEM_MONITOR
-
-
Method Detail
-
values
public static SyntaxMode[] 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 (SyntaxMode c : SyntaxMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyntaxMode 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
-
mode
public java.lang.String mode()
-
-