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

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

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

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

@Getter
public class BooleanOperand extends AbstractPart implements ParsedOperand {

    private final Boolean value;

    public BooleanOperand(Boolean value) {
        super(PartType.BOOL_OPERAND, Exp.val(value));
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy