ConverterSignature

public class ConverterSignature

Immutable object representing a converter signature. Used to index the converter maps.

Author

swrede

Constructors

ConverterSignature

public ConverterSignature(String schema, Class<?> dataType)

Instantiates a new signature object.

Parameters
  • schema – the wire schema produced by a converter

  • dataType – the datatype handled by a converter.

Methods

equals

public boolean equals(Object obj)

getDataType

public Class<?> getDataType()

Returns the data type of the described converter.

Returns

data type class

getSchema

public String getSchema()

Returns the wire schema the described converter produces and reads.

Returns

wire schema string

hashCode

public int hashCode()

toString

public String toString()