based on the interface description of http://epics-pvdata.sourceforge.net/docbuild/4.3.0/pvDataJava/documentation/html/org/epics/pvdata/property/TimeStamp.html
It seems like almost all the functionality and behaviour of org.epics.pvdata.property.TimeStamp is supported by https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html
The only missing piece is userTag. Should we simplify this interface by using the java.time.Instant to represent time and only keeping the userTag field.
based on the interface description of http://epics-pvdata.sourceforge.net/docbuild/4.3.0/pvDataJava/documentation/html/org/epics/pvdata/property/TimeStamp.html
It seems like almost all the functionality and behaviour of org.epics.pvdata.property.TimeStamp is supported by https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html
The only missing piece is userTag. Should we simplify this interface by using the java.time.Instant to represent time and only keeping the userTag field.