Uses of Interface
org.eclipse.ocl.examples.domain.values.TupleValue

Packages that use TupleValue
org.eclipse.ocl.examples.debug.vm.utils   
org.eclipse.ocl.examples.domain.evaluation   
org.eclipse.ocl.examples.domain.values   
org.eclipse.ocl.examples.domain.values.impl   
org.eclipse.ocl.examples.domain.values.util   
 

Uses of TupleValue in org.eclipse.ocl.examples.debug.vm.utils
 

Classes in org.eclipse.ocl.examples.debug.vm.utils that implement TupleValue
 class VMException
           
 class VMInterruptedExecutionException
           
 class VMRuntimeException
          Represents a runtime (unchecked) exception possibly thrown during OCL code execution.
 class VMStackOverFlowError
           
 

Uses of TupleValue in org.eclipse.ocl.examples.domain.evaluation
 

Classes in org.eclipse.ocl.examples.domain.evaluation that implement TupleValue
 class EvaluationHaltedException
          Exception indicating a managed interruption of evaluation.
 

Uses of TupleValue in org.eclipse.ocl.examples.domain.values
 

Subinterfaces of TupleValue in org.eclipse.ocl.examples.domain.values
 interface InvalidValue
           
 interface NullValue
           
 

Methods in org.eclipse.ocl.examples.domain.values that return TupleValue
 TupleValue Value.asTupleValue()
           
 

Methods in org.eclipse.ocl.examples.domain.values that return types with arguments of type TupleValue
 java.util.Set<TupleValue> CollectionValue.product(CollectionValue c, TupleTypeId tupleTypeId)
           
 

Uses of TupleValue in org.eclipse.ocl.examples.domain.values.impl
 

Classes in org.eclipse.ocl.examples.domain.values.impl that implement TupleValue
 class InvalidValueException
          An InvalidValueException wraps an InvalidValue and is used to return the InvalidValue to the caller.
 class NullValueImpl
          An InvalidValueException wraps an InvalidValue and is used to return the InvalidValue to the caller.
 class TupleValueImpl
          UML implementation of a tuple value.
 class UndefinedValueImpl
           
 

Methods in org.eclipse.ocl.examples.domain.values.impl that return TupleValue
 TupleValue NumberValueImpl.asTupleValue()
           
 TupleValue TupleValueImpl.asTupleValue()
           
 TupleValue UndefinedValueImpl.asTupleValue()
           
 TupleValue ValueImpl.asTupleValue()
           
 

Methods in org.eclipse.ocl.examples.domain.values.impl that return types with arguments of type TupleValue
 java.util.Set<TupleValue> CollectionValueImpl.product(CollectionValue c, TupleTypeId tupleTypeId)
           
 java.util.Set<TupleValue> UndefinedValueImpl.product(CollectionValue c, TupleTypeId tupleTypeId)
           
 

Uses of TupleValue in org.eclipse.ocl.examples.domain.values.util
 

Methods in org.eclipse.ocl.examples.domain.values.util that return TupleValue
static TupleValue ValuesUtil.asTupleValue(java.lang.Object value)
           
static TupleValue ValuesUtil.createTupleOfEach(TupleTypeId typeId, java.lang.Object... values)
           
static TupleValue ValuesUtil.createTupleValue(TupleTypeId typeId, java.util.Map<? extends TuplePartId,java.lang.Object> values)
           
static TupleValue ValuesUtil.createTupleValue(TupleTypeId typeId, java.lang.Object... values)
          Deprecated. 
 

Methods in org.eclipse.ocl.examples.domain.values.util with parameters of type TupleValue
 T ValuesSwitch.caseTupleValue(TupleValue object)
          Returns the result of interpreting the object as an instance of 'Tuple Value'.