org.unlaxer.tinyexpression.parser.BooleanFactorParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
package org.unlaxer.tinyexpression.parser;
import java.util.Set;
import org.unlaxer.util.Singletons;
public class BooleanFactorParser extends AbstractBooleanFactorParser implements TypedParser{
@Override
public org.unlaxer.parser.Parsers getLazyParsers() {
return getLazyParsers(true);
}
@Override
public boolean hasNakedVariableParser() {
return true;
}
@Override
public ExpressionTypes type() {
return ExpressionTypes._boolean;
}
@Override
public Set allTypes() {
return allTypes;
}
@Override
public Set otherTypes() {
return otherTypes;
}
static Set allTypes = Set.of(
Singletons.get(NumberFactorParser.class),
Singletons.get(StringFactorParser.class),
Singletons.get(BooleanFactorParser.class)
);
static Set otherTypes = Set.of(
Singletons.get(NumberFactorParser.class),
Singletons.get(StringFactorParser.class)
);
}