Class DateColumnTypeMapper
- java.lang.Object
-
- docking.widgets.table.constraint.ColumnTypeMapper<java.util.Date,java.time.LocalDate>
-
- docking.widgets.table.constraint.provider.DateColumnTypeMapper
-
- All Implemented Interfaces:
ExtensionPoint
public class DateColumnTypeMapper extends ColumnTypeMapper<java.util.Date,java.time.LocalDate>
Converts Date Column objects to LocalDate objects so that column gets LocalDate 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 DateColumnTypeMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.time.LocalDate
convert(java.util.Date 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.time.LocalDate convert(java.util.Date value)
Description copied from class:ColumnTypeMapper
Converts an object of type T1 to an object of type T2- Specified by:
convert
in classColumnTypeMapper<java.util.Date,java.time.LocalDate>
- Parameters:
value
- the object to convert.- Returns:
- the converted object.
-
-