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

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

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

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

@Getter
public class StringOperand extends AbstractPart implements ParsedOperand {

    private final String value;

    public StringOperand(String string) {
        super(PartType.STRING_OPERAND, Exp.val(string));
        this.value = string;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy