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 SummaryEnum Constants Enum Constant Description SRB_VERSION_2
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetType()Parameter buffer type (this usually is the version of the parameter buffer).static ServiceRequestBufferImp.SrbMetaDatavalueOf(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.Enumclone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 - 
Methods inherited from interface org.firebirdsql.gds.impl.ParameterBufferMetaDataaddPreamble, getByteArgumentType, getByteArrayArgumentType, getIntegerArgumentType, getSingleArgumentType, getStringArgumentType
 
- 
 
- 
- 
- 
Enum Constant Detail- 
SRB_VERSION_2public static final ServiceRequestBufferImp.SrbMetaData SRB_VERSION_2 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
getTypepublic final int getType() Description copied from interface:ParameterBufferMetaDataParameter buffer type (this usually is the version of the parameter buffer).- Specified by:
- getTypein interface- ParameterBufferMetaData
- Returns:
- Buffer type (for example ISCConstants.isc_spb_version3).
 
 
- 
 
-