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_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
      • 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
    • Field Detail

      • hasParameters

        public final boolean hasParameters
    • 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()