Class HyperLogLogPlusConverter
- java.lang.Object
-
- uk.gov.gchq.gaffer.spark.operation.dataframe.converter.property.impl.HyperLogLogPlusConverter
-
- All Implemented Interfaces:
Serializable,Converter
@Deprecated public class HyperLogLogPlusConverter extends Object implements Converter
Deprecated.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HyperLogLogPlusConverter()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleancanHandle(Class clazz)Deprecated.Enables checking whether the converter can convert a particular class.Longconvert(Object object)Deprecated.Request that the Serialisation serialises some object and returns the raw bytes of the serialised form.org.apache.spark.sql.types.DataTypeconvertedType()Deprecated.Returns theDataTypeindicating the type of the object that results from the conversion.
-
-
-
Method Detail
-
canHandle
public boolean canHandle(Class clazz)
Deprecated.Description copied from interface:ConverterEnables checking whether the converter can convert a particular class.
-
convertedType
public org.apache.spark.sql.types.DataType convertedType()
Deprecated.Description copied from interface:ConverterReturns theDataTypeindicating the type of the object that results from the conversion.- Specified by:
convertedTypein interfaceConverter- Returns:
- DataType the
DataTypecorresponding to the class that the object will be converted to.
-
convert
public Long convert(Object object) throws ConversionException
Deprecated.Description copied from interface:ConverterRequest that the Serialisation serialises some object and returns the raw bytes of the serialised form.- Specified by:
convertin interfaceConverter- Parameters:
object- the object to be serialised- Returns:
- Object the converted object
- Throws:
ConversionException- if the conversion of the object fails
-
-