com.github.gpluscb.ggjava.entity.object.scalars.GGTimestamp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gg-java Show documentation
Show all versions of gg-java Show documentation
Java wrapper for the smash.gg GraphQL API
The newest version!
package com.github.gpluscb.ggjava.entity.object.scalars;
import java.time.Instant;
/**
* Represents a Unix Timestamp. Supports up to 53 bit int values,
* as that is JavaScript's internal memory allocation for integer values.
*/
public interface GGTimestamp extends Scalar {
default Instant getValueInstant() {
return Instant.ofEpochSecond(getValue());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy