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

com.raylabz.bytesurge.container.FloatContainer Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
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