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

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

The newest version!
package com.github.gpluscb.ggjava.entity.object.response.scalars;

import com.github.gpluscb.ggjava.entity.EntityType;
import com.github.gpluscb.ggjava.entity.object.scalars.GGFloat;

import javax.annotation.Nonnull;

/**
 * The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.
 */
public class FloatResponse extends ScalarResponse implements GGFloat {
	public FloatResponse() {
		super(EntityType.FLOAT);
	}

	/**
	 * @throws IllegalArgumentException if value is null
	 */
	public FloatResponse(@Nonnull Float value) {
		super(EntityType.FLOAT, value);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy