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

com.contentgrid.thunx.predicates.model.NullValue 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.ToString;

@EqualsAndHashCode
@ToString
class NullValue implements Scalar {

    protected static NullValue INSTANCE = new NullValue();

    private NullValue() {
    }

    @Override
    public Void getValue() {
        return null;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy