Java Timestamp long2Timestamp(Long longValue)

Here you can find the source of long2Timestamp(Long longValue)

Description

long Timestamp

License

Open Source License

Declaration

public static Timestamp long2Timestamp(Long longValue) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.sql.Timestamp;

public class Main {
    public static Timestamp long2Timestamp(Long longValue) {
        return new Timestamp(longValue);
    }//  w w  w  .ja  va  2s  .c  om
}

Related

  1. IsTechStatisticWorkTime(Timestamp timestamp)
  2. isTimeStamp(Class o)
  3. isTimestamp(String aS_DateTime, String aS_Format)
  4. isTimestamp(String str)
  5. isValid(Timestamp validFrom, Timestamp validTo, Timestamp testDate)
  6. longFromTimestamp(Timestamp ts)
  7. max(Timestamp ts1, Timestamp ts2)
  8. maxTime(Timestamp dayTime)
  9. minusHours(Timestamp ts, int hours)