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

com.aerospike.dsl.model.FloatOperand Maven / Gradle / Ivy

The newest version!
package com.aerospike.dsl.model;

import com.aerospike.client.exp.Exp;
import lombok.Getter;

@Getter
public class FloatOperand extends AbstractPart implements ParsedOperand {

    private final Double value;

    public FloatOperand(Double value) {
        super(PartType.FLOAT_OPERAND, Exp.val(value));
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy