Package oracle.kv

Enum StatementResult.Kind

java.lang.Object
java.lang.Enum<StatementResult.Kind>
oracle.kv.StatementResult.Kind
All Implemented Interfaces:
Serializable, Comparable<StatementResult.Kind>, oracle.kv.impl.util.FastExternalizable
Enclosing interface:
StatementResult

public static enum StatementResult.Kind extends Enum<StatementResult.Kind> implements oracle.kv.impl.util.FastExternalizable
Shows the kind of StatementResult.
Since:
4.0
See Also:
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Results of data definition language statements: create or remove table, a create or remove index or an alter index, or other statements that don't return data records.
    Query statements that return records, for example SELECT FROM ....
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface oracle.kv.impl.util.FastExternalizable

    deserializedForm
  • Enum Constant Details

    • DDL

      public static final StatementResult.Kind DDL
      Results of data definition language statements: create or remove table, a create or remove index or an alter index, or other statements that don't return data records. In this case the iterator().hasNext() will always return false.
    • QUERY

      public static final StatementResult.Kind QUERY
      Query statements that return records, for example SELECT FROM ....
  • Method Details

    • values

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

      public static StatementResult.Kind valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null