Formula.Var

public static class Formula.Var<T>
extends Formula<T>
Hierarchy:
ObjectFormula<T> ⯈ Formula.Var<T>
Enclosing class:
Formula<T>

Summary

Instance Fields
T value
Constructors
Var (T init)
Instance Methods
T calc (Data.Row row)
String calcString (Data.Row row)
Inherited from Formula<T>.
Show all inherited methods (11 more)
protected native Object clone ()
Inherited from Object.
boolean equals (Object)
Inherited from Object.
protected void finalize ()
Inherited from Object.
final native Class<?> getClass ()
Inherited from Object.
native int hashCode ()
Inherited from Object.
final native void notify ()
Inherited from Object.
final native void notifyAll ()
Inherited from Object.
String toString ()
Inherited from Object.
final void wait ()
Inherited from Object.
final native void wait (long)
Inherited from Object.
final void wait (long, int)
Inherited from Object.
Static Methods
static Formula<Double> average (String... hdrs)
Inherited from Formula<T>.
static Formula<Double> diff (Formula<Double> x, Formula<Double> y)
Inherited from Formula<T>.
static <T>Formula<Boolean> eq (Formula<T> x, Formula<T> y)
Inherited from Formula<T>.
static <T>Formula<String> format (ValueFormatter<T> fmt, Formula<T> x)
Inherited from Formula<T>.
static Formula<String> format (String fmt, Formula<?> x)
Inherited from Formula<T>.
static <T>Formula<T> func (Function<Data.Row, T> f)
Inherited from Formula<T>.
static Formula<String> get (String hdr)
Inherited from Formula<T>.
static Formula<Integer> getInt (String hdr)
Inherited from Formula<T>.
static Formula<Double> getNum (String hdr)
Inherited from Formula<T>.
static Formula<Boolean> inRange (Formula<Double> x, double min, double max)
Inherited from Formula<T>.
static Formula<Integer> inc (Formula<Integer> x)
Inherited from Formula<T>.
static Formula<String> lowercase (Formula<String> s)
Inherited from Formula<T>.
static <T>Formula<Boolean> not (Formula<Boolean> x)
Inherited from Formula<T>.
static Formula<String> percent (Formula<Double> x)
Inherited from Formula<T>.
static Formula<Double> prod (Formula<Double> x, Formula<Double> y)
Inherited from Formula<T>.
static Formula<Double> ratio (Formula<Double> x, Formula<Double> y)
Inherited from Formula<T>.
static Formula<Integer> round (Formula<Double> x)
Inherited from Formula<T>.
static Formula<Double> sum (Formula<Double> x, Formula<Double> y)
Inherited from Formula<T>.
static Formula<Integer> sumInt (Formula<Integer> x, Formula<Integer> y)
Inherited from Formula<T>.
static Formula<Double> total (String... hdrs)
Inherited from Formula<T>.
static Formula<Integer> totalInt (String... hdrs)
Inherited from Formula<T>.
static <T>Formula<T> tryOrNull (boolean silent, Formula<T> x)
Inherited from Formula<T>.
static Formula<String> uppercase (Formula<String> s)
Inherited from Formula<T>.
static <T>Formula<T> val (T v)
Inherited from Formula<T>.

value

public T value;

Var

public Var (
	T init
);

calc

@Override
public T calc (
	Data.Row row
);

Implements Formula.calc(Data.Row).