Package org.firebirdsql.gds.impl
Enum Class TransactionParameterBufferImpl.TpbMetaData
java.lang.Object
java.lang.Enum<TransactionParameterBufferImpl.TpbMetaData>
org.firebirdsql.gds.impl.TransactionParameterBufferImpl.TpbMetaData
- All Implemented Interfaces:
Serializable,Comparable<TransactionParameterBufferImpl.TpbMetaData>,Constable,ParameterBufferMetaData
- Enclosing class:
- TransactionParameterBufferImpl
public static enum TransactionParameterBufferImpl.TpbMetaData
extends Enum<TransactionParameterBufferImpl.TpbMetaData>
implements ParameterBufferMetaData
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionvoidaddPreamble(ParameterBuffer parameterBuffer) Allows the metadata to add a preamble to the parameter buffer.getByteArrayArgumentType(int tag) Gets the byte array argument type for the supplied tag.getIntegerArgumentType(int tag) Gets the byte array argument type for the supplied tag.getStringArgumentType(int tag) Gets the string argument type for the supplied tag.intgetType()Parameter buffer type (this usually is the version of the parameter buffer).Returns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TPB_VERSION_3
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
getType
public int getType()Description copied from interface:ParameterBufferMetaDataParameter buffer type (this usually is the version of the parameter buffer).- Specified by:
getTypein interfaceParameterBufferMetaData- Returns:
- Buffer type (for example
ISCConstants.isc_spb_version3).
-
addPreamble
Description copied from interface:ParameterBufferMetaDataAllows the metadata to add a preamble to the parameter buffer.This is only intended for the weird "version 2" connection service parameter buffer that requires two tags for the version with
isc_spb_version, isc_spb_current_version.- Specified by:
addPreamblein interfaceParameterBufferMetaData- Parameters:
parameterBuffer- Parameter buffer.
-
getStringArgumentType
Description copied from interface:ParameterBufferMetaDataGets 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:
getStringArgumentTypein interfaceParameterBufferMetaData- Parameters:
tag- Tag (item type)- Returns:
- Argument type (never
null)
-
getByteArrayArgumentType
Description copied from interface:ParameterBufferMetaDataGets 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:
getByteArrayArgumentTypein interfaceParameterBufferMetaData- Parameters:
tag- Tag (item type)- Returns:
- Argument type (never
null)
-
getIntegerArgumentType
Description copied from interface:ParameterBufferMetaDataGets 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:
getIntegerArgumentTypein interfaceParameterBufferMetaData- Parameters:
tag- Tag (item type)- Returns:
- Argument type (never
null)
-