Class ConstantValue<T extends Comparable>

Direct Known Subclasses:
BooleanValue, DoubleValue, InfiniteValue, LongValue, RawValue, StringValue

public abstract class ConstantValue<T extends Comparable> extends GroupingExpression
This class represents a constant value in a GroupingExpression. Because it does not operate on any input, this expression type can be used at any input level (see GroupingExpression.resolveLevel(int)). All supported data types are represented as subclasses of this.
Author:
Simon Thoresen Hult, bratseth
  • Constructor Details

    • ConstantValue

      protected ConstantValue(String label, Integer level, T value)
  • Method Details