View Javadoc
1   package xuml.tools.model.compiler.runtime.query;
2   
3   import xuml.tools.model.compiler.runtime.Entity;
4   
5   public class NumericConstant<T extends Entity<T>> extends NumericExpression<T> {
6   
7       private final Number value;
8   
9       public NumericConstant(Number value) {
10          this.value = value;
11      }
12  
13      public Number getValue() {
14          return value;
15      }
16  
17  }