Package org.firebirdsql.gds.impl
Enum ServiceRequestBufferImp.SrbMetaData
- java.lang.Object
-
- java.lang.Enum<ServiceRequestBufferImp.SrbMetaData>
-
- org.firebirdsql.gds.impl.ServiceRequestBufferImp.SrbMetaData
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ServiceRequestBufferImp.SrbMetaData>
,ParameterBufferMetaData
- Enclosing class:
- ServiceRequestBufferImp
public static enum ServiceRequestBufferImp.SrbMetaData extends java.lang.Enum<ServiceRequestBufferImp.SrbMetaData> implements ParameterBufferMetaData
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SRB_VERSION_2
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getType()
Parameter buffer type (this usually is the version of the parameter buffer).static ServiceRequestBufferImp.SrbMetaData
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ServiceRequestBufferImp.SrbMetaData[]
values()
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 interface org.firebirdsql.gds.impl.ParameterBufferMetaData
addPreamble, getByteArgumentType, getByteArrayArgumentType, getIntegerArgumentType, getSingleArgumentType, getStringArgumentType
-
-
-
-
Enum Constant Detail
-
SRB_VERSION_2
public static final ServiceRequestBufferImp.SrbMetaData SRB_VERSION_2
-
-
Method Detail
-
values
public static ServiceRequestBufferImp.SrbMetaData[] 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 (ServiceRequestBufferImp.SrbMetaData c : ServiceRequestBufferImp.SrbMetaData.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceRequestBufferImp.SrbMetaData 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 namejava.lang.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 interfaceParameterBufferMetaData
- Returns:
- Buffer type (for example
ISCConstants.isc_spb_version3
).
-
-