All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.gpluscb.ggjava.entity.object.scalars.GGTimestamp Maven / Gradle / Ivy

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