Here you can find the source of getInstantOfEpoch(long seconds)
Parameter | Description |
---|---|
seconds | Zeitstempel |
public static Instant getInstantOfEpoch(long seconds)
//package com.java2s; //License from project: Open Source License import java.time.Instant; public class Main { /**//from ww w . j a v a2s . c o m * gibt ein Instant zum Zeitstempel zurueck * * @param seconds Zeitstempel * @return */ public static Instant getInstantOfEpoch(long seconds) { return Instant.ofEpochSecond(seconds, 0); } }