I am working with javafx2.2
. I am creating a table using tableview
, my data is of different type. int,string,float,double have SimpleIntegerProperty
, SimpleFloatProperty
, SimpleDoubleProperty
, SimpleStringproperty
But what to do for long , char , TimeStamp and float sequence.
I need to use these because of sorting performance see this
Thank You
You can just create ObjectProperty like that
And use it like any ohter property