com.github.gpluscb.ggjava.entity.object.response.scalars.FloatResponse 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.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