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

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

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

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

@Getter
public class VariableOperand extends AbstractPart {

    private final String name;

    public VariableOperand(String name) {
        super(PartType.VARIABLE_OPERAND, Exp.var(name));
        this.name = name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy