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

mockit.asm.constantPool.DoubleItem Maven / Gradle / Ivy

package mockit.asm.constantPool;

import static mockit.asm.jvmConstants.ConstantPoolTypes.DOUBLE;

import edu.umd.cs.findbugs.annotations.NonNull;

import org.checkerframework.checker.index.qual.NonNegative;

public final class DoubleItem extends LongValueItem {
    public DoubleItem(@NonNegative int index) {
        super(index);
        type = DOUBLE;
    }

    DoubleItem(@NonNegative int index, @NonNull DoubleItem item) {
        super(index, item);
    }

    /**
     * Sets the value of this item.
     */
    public void set(double value) {
        long longValue = Double.doubleToRawLongBits(value);
        setValue(longValue);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy