SquirrelJME/SquirrelJME

View on GitHub
modules/tool-classfile/src/main/java/net/multiphasicapps/classfile/ConstantValueFloat.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package net.multiphasicapps.classfile;

/**
 * Represents a float constant value.
 *
 * @since 2018/05/21
 */
public final class ConstantValueFloat
    extends ConstantValueNumber
{
    /**
     * Initializes the constant value.
     *
     * @param __v The value.
     * @since 2018/05/21
     */
    public ConstantValueFloat(float __v)
    {
        super(__v, ConstantValueType.FLOAT);
    }
}