Enum SyntaxMode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SyntaxMode>

    public enum SyntaxMode
    extends java.lang.Enum<SyntaxMode>
    • Enum Constant Detail

      • ESTIMATE

        public static final SyntaxMode ESTIMATE
      • GRAPH_DROP

        public static final SyntaxMode GRAPH_DROP
      • MODEL_DROP

        public static final SyntaxMode MODEL_DROP
      • GRAPH_PROJECT

        public static final SyntaxMode GRAPH_PROJECT
      • GRAPH_PROJECT_CYPHER

        public static final SyntaxMode GRAPH_PROJECT_CYPHER
      • GRAPH_PROJECT_CYPHER_AGGREGATION

        public static final SyntaxMode GRAPH_PROJECT_CYPHER_AGGREGATION
      • STREAM_NODE_PROPERTIES

        public static final SyntaxMode STREAM_NODE_PROPERTIES
      • STREAM_SINGLE_PROPERTY

        public static final SyntaxMode STREAM_SINGLE_PROPERTY
      • STREAM_MULTIPLE_PROPERTIES

        public static final SyntaxMode STREAM_MULTIPLE_PROPERTIES
      • SINGLE_MODE

        public static final SyntaxMode SINGLE_MODE
      • STREAM_TOPOLOGY

        public static final SyntaxMode STREAM_TOPOLOGY
      • GRAPH_EXISTS

        public static final SyntaxMode GRAPH_EXISTS
      • MODEL_EXISTS

        public static final SyntaxMode MODEL_EXISTS
      • GRAPH_EXPORT

        public static final SyntaxMode GRAPH_EXPORT
      • PROJECT_SAMPLE

        public static final SyntaxMode PROJECT_SAMPLE
      • GRAPH_FILTER

        public static final SyntaxMode GRAPH_FILTER
      • REMOVE_NODE_PROPERTY

        public static final SyntaxMode REMOVE_NODE_PROPERTY
      • REMOVE_RELATIONSHIP_TYPE

        public static final SyntaxMode REMOVE_RELATIONSHIP_TYPE
      • WRITE_RELATIONSHIP_PROPERTIES

        public static final SyntaxMode WRITE_RELATIONSHIP_PROPERTIES
      • WRITE_NODE_PROPERTIES

        public static final SyntaxMode WRITE_NODE_PROPERTIES
      • 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_AUTO_TUNING

        public static final SyntaxMode PIPELINE_CONFIGURE_AUTO_TUNING
      • PIPELINE_ADD_LR_MODEL

        public static final SyntaxMode PIPELINE_ADD_LR_MODEL
      • PIPELINE_ADD_RF_MODEL

        public static final SyntaxMode PIPELINE_ADD_RF_MODEL
      • PIPELINE_CONFIGURE_PARAMS

        public static final SyntaxMode PIPELINE_CONFIGURE_PARAMS
      • PIPELINE_LIST

        public static final SyntaxMode PIPELINE_LIST
      • PIPELINE_EXISTS

        public static final SyntaxMode PIPELINE_EXISTS
      • PIPELINE_DROP

        public static final SyntaxMode PIPELINE_DROP
      • LIST_PROGRESS

        public static final SyntaxMode LIST_PROGRESS
      • USER_LOG

        public static final SyntaxMode USER_LOG
      • SYSTEM_MONITOR

        public static final SyntaxMode SYSTEM_MONITOR
      • SYS_INFO

        public static final SyntaxMode SYS_INFO
      • WRITE_NODE_LABEL

        public static final SyntaxMode WRITE_NODE_LABEL
      • MUTATE_NODE_LABEL

        public static final SyntaxMode MUTATE_NODE_LABEL
      • GRAPH_GENERATE

        public static final SyntaxMode GRAPH_GENERATE
    • Field Detail

      • hasParameters

        public final boolean hasParameters
      • namespace

        public final org.neo4j.gds.annotation.CustomProcedure.Namespace namespace
    • 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 name
        java.lang.NullPointerException - if the argument is null
      • mode

        public java.lang.String mode()