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

com.github.t3t5u.common.expression.BooleanLiteral Maven / Gradle / Ivy

The newest version!
package com.github.t3t5u.common.expression;

@SuppressWarnings("serial")
public class BooleanLiteral extends AbstractLiteralExpression {
	public static final BooleanLiteral TRUE = new BooleanLiteral(true);
	public static final BooleanLiteral FALSE = new BooleanLiteral(false);

	BooleanLiteral(final Boolean value) {
		super(Boolean.class, value);
	}

	@Override
	public  R accept(final Visitor visitor) {
		return visitor.visit(this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy