Class FloatColumnTypeMapper
- java.lang.Object
-
- docking.widgets.table.constraint.ColumnTypeMapper<java.lang.Float,java.lang.Double>
-
- docking.widgets.table.constraint.provider.FloatColumnTypeMapper
-
- All Implemented Interfaces:
ExtensionPoint
public class FloatColumnTypeMapper extends ColumnTypeMapper<java.lang.Float,java.lang.Double>
Converts Float Column objects to Double objects so that column gets Double type column filters
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface ghidra.util.classfinder.ExtensionPoint
ExtensionPoint.Exclude, ExtensionPoint.Util
-
-
Constructor Summary
Constructors Constructor Description FloatColumnTypeMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Double
convert(java.lang.Float value)
Converts an object of type T1 to an object of type T2-
Methods inherited from class docking.widgets.table.constraint.ColumnTypeMapper
getDestinationType, getSourceType
-
-
-
-
Method Detail
-
convert
public java.lang.Double convert(java.lang.Float value)
Description copied from class:ColumnTypeMapper
Converts an object of type T1 to an object of type T2- Specified by:
convert
in classColumnTypeMapper<java.lang.Float,java.lang.Double>
- Parameters:
value
- the object to convert.- Returns:
- the converted object.
-
-