com.contentgrid.thunx.predicates.model.NullValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thunx-model Show documentation
Show all versions of thunx-model Show documentation
Set of (vendor-neutral) data structures to model authorization policy expressions
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 extends Void> getResultType() {
return Void.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy