com.raylabz.bytesurge.container.FloatContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bytesurge Show documentation
Show all versions of bytesurge Show documentation
A library for streaming byte messages of data in Java.
package com.raylabz.bytesurge.container;
import com.raylabz.bytesurge.schema.SchemaType;
/**
* Contains a floating-point value.
* @author Nicos Kasenides - RayLabz
* @version 0.0.1
*/
public class FloatContainer extends ScalarContainer {
/**
* Constructs a FloatContainer.
* @param value The value stored in the container.
*/
public FloatContainer(Float value) {
super(SchemaType.FLOAT, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy