Java Utililty Methods Timestamp to String

List of utility methods to do Timestamp to String

Description

The list of methods to do Timestamp to String are organized into topic(s).

Method

StringtoStringFormatGMTTime(Timestamp time, String format)
to String Format GMT Time
if (time == null) {
    return null;
return toStringFormatGMTTime(time.getTime(), format);