Uses of Class
org.datamixer.values.Value

Packages that use Value
org.datamixer   
org.datamixer.collections   
org.datamixer.containers   
org.datamixer.functions   
org.datamixer.functions.arithmetic   
org.datamixer.functions.datamixer   
org.datamixer.functions.string   
org.datamixer.io   
org.datamixer.util   
org.datamixer.values   
 

Uses of Value in org.datamixer
 

Methods in org.datamixer that return Value
 Value DatamixerEvent.getValue()
           
 

Methods in org.datamixer with parameters of type Value
 void DatamixerEvent.setValue(Value value)
           
 

Uses of Value in org.datamixer.collections
 

Fields in org.datamixer.collections declared as Value
protected  Value ValueListIterator.current_
           
protected  Value RandomIterator.current_
          current value
protected  Value ConstantsIterator.value_
          the constant value
 

Methods in org.datamixer.collections that return Value
 Value ValueListIterator.getCurrentValue()
          Returns the value most recently returned by nextValue().
protected  Value ValueListIterator.doGetCurrentValue()
          Returns the value most recently returned by nextValue().
 Value ValueList.getValue(int index)
           
 Value ValueList.addValue(Value value)
          Adds value to this list.
 Value ValueList.getValue(java.lang.String name)
          Get value by name.
 Value ValueList.findValue(java.lang.String[] names)
          Locate a nested value by names.
protected  Value StringsIterator.doGetCurrentValue()
          Returns the current value.
 Value Strings.getValue(int index)
           
protected  Value RandomIterator.doGetCurrentValue()
          Returns the current value.
protected  Value NullIterator.doGetCurrentValue()
          Returns the value most recently returned by nextValue().
protected  Value IteratorReference.doGetCurrentValue()
          Returns the current value.
protected  Value IntsIterator.doGetCurrentValue()
          Returns the current value.
 Value Ints.getValue(int index)
           
protected  Value DoublesIterator.doGetCurrentValue()
          Returns the current value.
 Value Doubles.getValue(int index)
           
protected  Value DatesIterator.doGetCurrentValue()
          Returns the current value.
 Value Dates.getValue(int index)
           
abstract  Value DatamixerList.getValue(int index)
          Returns the element at index, wrapped in a Value.
 Value DatamixerIterator.getNextValue()
          Generates the next value, sets it as the current value, and fires a next event.
 Value DatamixerIterator.getCurrentValue()
          Returns the value most recently returned by nextValue().
protected abstract  Value DatamixerIterator.doGetCurrentValue()
          Returns the current value.
protected  Value ConstantsIterator.doGetCurrentValue()
          Returns the value most recently returned by nextValue().
 Value ConstantsIterator.getValue()
          Sets the constant.
protected  Value CollectionWrapperIterator.doGetCurrentValue()
          Returns the last value returned by nextValue().
 

Methods in org.datamixer.collections with parameters of type Value
 Value ValueList.addValue(Value value)
          Adds value to this list.
protected  void ValueList.updateValueMap(Value value)
          Adds value to this list.
 void DatamixerIterator.setCurrentValue(Value value)
          Returns the value most recently returned by nextValue().
 void ConstantsIterator.setValue(Value value)
          Returns the constant.
 

Constructors in org.datamixer.collections with parameters of type Value
ConstantsIterator(Value value)
           
 

Uses of Value in org.datamixer.containers
 

Fields in org.datamixer.containers declared as Value
protected  Value CollectionContainerIterator.current_
          current value
 

Methods in org.datamixer.containers that return Value
protected  Value CollectionContainerIterator.doGetCurrentValue()
          Returns the current value.
 Value CollectionContainer.getValue(int index)
          Returns a ValueListValue that contains a ValueList that contains the element at index in each list.
 

Uses of Value in org.datamixer.functions
 

Methods in org.datamixer.functions that return Value
 Value StrategyResult.toValue()
           
protected  Value RandomFunction.doGetCurrentValue()
          Returns the current value.
 Value LineStrategy.operator()
           
 Value LineStrategy.getMultiplier()
           
 Value LineStrategy.getIntercept()
           
 Value FunctionStrategy.operator()
          Applies an operator to the children of a Function node.
 Value FunctionIterator.getArguments()
          Returns the current arguments.
 

Methods in org.datamixer.functions with parameters of type Value
 void LineStrategy.setMultiplier(Value value)
           
 void LineStrategy.setIntercept(Value value)
           
protected  void FunctionStrategy.handleArguments(Value value)
          If value is a ValueListValue, calls handleArguments recursively on its values.
protected  void FunctionStrategy.operate(Value value)
          Operates on value.
 

Uses of Value in org.datamixer.functions.arithmetic
 

Methods in org.datamixer.functions.arithmetic that return Value
 Value SubtractStrategy.operator()
           
 Value MultiplyStrategy.operator()
           
 Value DivideStrategy.operator()
           
 

Methods in org.datamixer.functions.arithmetic with parameters of type Value
protected  void AddStrategy.operate(Value value)
           
 

Uses of Value in org.datamixer.functions.datamixer
 

Methods in org.datamixer.functions.datamixer that return Value
 Value ForEachStrategy.operator()
           
 Value AddValueStrategy.operator()
          Takes two arguments: a DatamixerIterator and a ValueList.
 

Uses of Value in org.datamixer.functions.string
 

Methods in org.datamixer.functions.string with parameters of type Value
protected  void ConcatStrategy.operate(Value value)
           
 

Uses of Value in org.datamixer.io
 

Fields in org.datamixer.io declared as Value
protected  Value DMElement.value_
          value
protected  Value DMAttribute.value_
          value
 

Methods in org.datamixer.io that return Value
 Value DMStreamReader.getCurrentValue()
          Returns the value most recently returned by nextValue().
 Value DMElement.getValue()
           
 Value DMElement.getValueInAncestor()
          Finds values in nearest ancestor.
 Value DMElement.findValue(java.lang.String path)
          Finds value by name.
 Value DMAttribute.getValue()
           
 

Methods in org.datamixer.io with parameters of type Value
protected  void XmlFormat.formatAttribute(DMAttribute attr, Value value, int index)
           
protected  void DMFormatter.formatAttribute(DMAttribute attr, Value value, int index)
           
 void DMElement.setValue(Value value)
           
 void DMAttribute.setValue(Value value)
          sets value as the current value, and fires a next event.
protected  void DelimitedFormat.formatAttribute(DMAttribute attr, Value value, int index)
           
 

Uses of Value in org.datamixer.util
 

Fields in org.datamixer.util declared as Value
protected  Value Range.step_
           
protected  Value Range.epsilon_
           
protected  Value Bound.value_
           
 

Methods in org.datamixer.util that return Value
 Value Range.getFirst()
           
 Value Range.getLast()
           
 Value Range.getStep()
           
 Value Range.getEpsilon()
           
 Value Bound.getValue()
           
 

Methods in org.datamixer.util with parameters of type Value
 void Range.setFirst(Value value)
           
 void Range.setLast(Value value)
           
 void Range.setStep(Value value)
           
 void Range.setEpsilon(Value value)
           
 void Bound.setValue(Value value)
           
 

Constructors in org.datamixer.util with parameters of type Value
Range(Value first)
           
Range(Value first, Value last)
           
Range(Value first, Value last, Value step)
           
Range(Value first, Value last, Value step, Value epsilon)
           
Bound(Value value)
           
 

Uses of Value in org.datamixer.values
 

Subclasses of Value in org.datamixer.values
 class DateValue
           
 class DoubleValue
           
 class IntValue
           
 class NullValue
           
 class ObjectValue
           
 class StringValue
           
 class ValueListValue
           
 

Methods in org.datamixer.values that return Value
protected  Value ValueListValue.doClone()
          Returns a deep copy.
 Value ValueFactory.createValue(java.lang.String dataType)
           
 Value ValueFactory.createValue(java.lang.String dataType, java.lang.Object initialValue)
           
 Value ValueFactory.createValue(int dataType)
           
 Value ValueFactory.createValue(int dataType, java.lang.Object initialValue)
           
protected abstract  Value Value.doClone()
          Returns a deep copy.
 Value Value.findValue(java.lang.String[] names)
          Find a nested value by path, a dot-separated list of names.
protected  Value StringValue.doClone()
          Returns a deep copy.
protected  Value ObjectValue.doClone()
          Returns a deep copy.
protected  Value NullValue.doClone()
          Returns a deep copy.
protected  Value IntValue.doClone()
          Returns a deep copy.
protected  Value DoubleValue.doClone()
          Returns a deep copy.
protected  Value DateValue.doClone()
          Returns a deep copy.
 



Copyright © 2004-2006 datamixer.org. All Rights Reserved.