Class ConfigurationSchemaVersion

  • All Implemented Interfaces:
    java.io.Externalizable , java.io.Serializable , java.lang.Comparable , org.apache.avro.generic.GenericContainer , org.apache.avro.generic.GenericRecord , org.apache.avro.generic.IndexedRecord , org.apache.avro.specific.SpecificRecord

    
    public class ConfigurationSchemaVersion
    extends SpecificRecordBase implements SpecificRecord
                        

    Schema version number for a configuration section

    • Constructor Detail

      • ConfigurationSchemaVersion

        ConfigurationSchemaVersion()
        Default constructor.
      • ConfigurationSchemaVersion

        ConfigurationSchemaVersion(Integer majorVersion, Integer minorVersion)
        All-args constructor.
        Parameters:
        majorVersion - The major version number for the schema
        minorVersion - The minor version number for the schema
    • Method Detail

      • getMajorVersion

         int getMajorVersion()

        Gets the value of the 'majorVersion' field.

        Returns:

        The major version number for the schema

      • setMajorVersion

         void setMajorVersion(int value)

        Sets the value of the 'majorVersion' field. The major version number for the schema

        Parameters:
        value - the value to set.
      • getMinorVersion

         int getMinorVersion()

        Gets the value of the 'minorVersion' field.

        Returns:

        The minor version number for the schema

      • setMinorVersion

         void setMinorVersion(int value)

        Sets the value of the 'minorVersion' field. The minor version number for the schema

        Parameters:
        value - the value to set.
      • getEncoder

         static BinaryMessageEncoder<ConfigurationSchemaVersion> getEncoder()

        Return the BinaryMessageEncoder instance used by this class.

        Returns:

        the message encoder used by this class

      • getDecoder

         static BinaryMessageDecoder<ConfigurationSchemaVersion> getDecoder()

        Return the BinaryMessageDecoder instance used by this class.

        Returns:

        the message decoder used by this class

      • createDecoder

         static BinaryMessageDecoder<ConfigurationSchemaVersion> createDecoder(SchemaStore resolver)

        Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore.

        Parameters:
        resolver - a SchemaStore used to find schemas by fingerprint
        Returns:

        a BinaryMessageDecoder instance for this class backed by the given SchemaStore

      • toByteBuffer

         ByteBuffer toByteBuffer()

        Serializes this ConfigurationSchemaVersion to a ByteBuffer.

        Returns:

        a buffer holding the serialized data for this instance

      • fromByteBuffer

         static ConfigurationSchemaVersion fromByteBuffer(ByteBuffer b)

        Deserializes a ConfigurationSchemaVersion from a ByteBuffer.

        Parameters:
        b - a byte buffer holding serialized data for an instance of this class
        Returns:

        a ConfigurationSchemaVersion instance decoded from the given buffer