Enum ServiceRequestBufferImp.SrbMetaData

    • 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 name
        java.lang.NullPointerException - if the argument is null
      • addPreamble

        public void addPreamble​(ParameterBuffer parameterBuffer)
        Description copied from interface: ParameterBufferMetaData
        Allows 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:
        addPreamble in interface ParameterBufferMetaData
        Parameters:
        parameterBuffer - Parameter buffer.