Enum Class DatabaseParameterBufferImp.DpbMetaData

java.lang.Object
java.lang.Enum<DatabaseParameterBufferImp.DpbMetaData>
org.firebirdsql.gds.impl.DatabaseParameterBufferImp.DpbMetaData
All Implemented Interfaces:
Serializable, Comparable<DatabaseParameterBufferImp.DpbMetaData>, Constable, ParameterBufferMetaData
Enclosing class:
DatabaseParameterBufferImp

public static enum DatabaseParameterBufferImp.DpbMetaData extends Enum<DatabaseParameterBufferImp.DpbMetaData> implements ParameterBufferMetaData
  • Enum Constant Details

  • Method Details

    • values

      public static DatabaseParameterBufferImp.DpbMetaData[] 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 DatabaseParameterBufferImp.DpbMetaData 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
    • getType

      public final int getType()
      Description copied from interface: ParameterBufferMetaData
      Parameter buffer type (this usually is the version of the parameter buffer).
      Specified by:
      getType in interface ParameterBufferMetaData
      Returns:
      Buffer type (for example ISCConstants.isc_spb_version3).
    • getStringArgumentType

      public final ArgumentType getStringArgumentType(int tag)
      Description copied from interface: ParameterBufferMetaData
      Gets the string argument type for the supplied tag.

      When the tag is not known (or unsupported for string arguments), then the default should be returned.

      Specified by:
      getStringArgumentType in interface ParameterBufferMetaData
      Parameters:
      tag - Tag (item type)
      Returns:
      Argument type (never null)
    • getByteArrayArgumentType

      public final ArgumentType getByteArrayArgumentType(int tag)
      Description copied from interface: ParameterBufferMetaData
      Gets the byte array argument type for the supplied tag.

      When the tag is not known (or unsupported for string arguments), then the default should be returned.

      Specified by:
      getByteArrayArgumentType in interface ParameterBufferMetaData
      Parameters:
      tag - Tag (item type)
      Returns:
      Argument type (never null)
    • getIntegerArgumentType

      public final ArgumentType getIntegerArgumentType(int tag)
      Description copied from interface: ParameterBufferMetaData
      Gets the integer argument type for the supplied tag.

      When the tag is not known (or unsupported for string arguments), then the default should be returned.

      Specified by:
      getIntegerArgumentType in interface ParameterBufferMetaData
      Parameters:
      tag - Tag (item type)
      Returns:
      Argument type (never null)
    • getSingleArgumentType

      public final ArgumentType getSingleArgumentType(int tag)
      Description copied from interface: ParameterBufferMetaData
      Gets the single argument type for the supplied tag.

      When the tag is not known (or unsupported for string arguments), then the default should be returned.

      Specified by:
      getSingleArgumentType in interface ParameterBufferMetaData
      Parameters:
      tag - Tag (item type)
      Returns:
      Argument type (never null)