Enum Class Neo4JOpType

java.lang.Object
java.lang.Enum<Neo4JOpType>
io.nosqlbench.adapter.neo4j.types.Neo4JOpType
All Implemented Interfaces:
Serializable, Comparable<Neo4JOpType>, Constable

public enum Neo4JOpType extends Enum<Neo4JOpType>
  • Enum Constant Details

    • sync_autocommit

      public static final Neo4JOpType sync_autocommit
    • async_autocommit

      public static final Neo4JOpType async_autocommit
    • sync_read_transaction

      public static final Neo4JOpType sync_read_transaction
    • async_read_transaction

      public static final Neo4JOpType async_read_transaction
    • sync_write_transaction

      public static final Neo4JOpType sync_write_transaction
    • async_write_transaction

      public static final Neo4JOpType async_write_transaction
  • Method Details

    • values

      public static Neo4JOpType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Neo4JOpType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()