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

com.contentgrid.thunx.predicates.model.StringValue Maven / Gradle / Ivy

Go to download

Set of (vendor-neutral) data structures to model authorization policy expressions

There is a newer version: 0.11.0
Show newest version
package com.contentgrid.thunx.predicates.model;

import lombok.EqualsAndHashCode;
import lombok.Getter;

@EqualsAndHashCode
class StringValue implements Scalar {

    @Getter
    private String value;

    protected StringValue(String value) {

        this.value = value;
    }

    @Override
    public String toString() {
        return "'" + this.getValue() + "'";
    }

    @Override
    public Class getResultType() {
        return String.class;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy