cdc.applic.expressions.ast.ValueNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-expressions Show documentation
Show all versions of cdc-applic-expressions Show documentation
Applicabilities Expressions.
package cdc.applic.expressions.ast;
import cdc.applic.expressions.content.Value;
import cdc.applic.expressions.literals.Name;
import cdc.applic.expressions.parsing.ComparisonOperator;
public interface ValueNode extends PropertyNode {
@Override
public ValueNode negate();
public ComparisonOperator getComparisonOperator();
public ValueNode create(Name propertyName,
Value value);
public Value getValue();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy