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

Packages that use OrderedCollectionValue
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   
org.eclipse.ocl.examples.library.collection   
 

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

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

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

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

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

Subinterfaces of OrderedCollectionValue in org.eclipse.ocl.examples.domain.values
 interface InvalidValue
           
 interface NullValue
           
 interface OrderedSetValue
           
static interface OrderedSetValue.Accumulator
           
 interface SequenceValue
           
static interface SequenceValue.Accumulator
           
 

Methods in org.eclipse.ocl.examples.domain.values that return OrderedCollectionValue
 OrderedCollectionValue OrderedCollectionValue.append(java.lang.Object object)
           
 OrderedCollectionValue OrderedCollectionValue.appendAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue Value.asOrderedCollectionValue()
           
 OrderedCollectionValue OrderedCollectionValue.insertAt(int index, java.lang.Object object)
           
 OrderedCollectionValue OrderedCollectionValue.prepend(java.lang.Object object)
           
 OrderedCollectionValue OrderedCollectionValue.prependAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue OrderedCollectionValue.reverse()
           
 OrderedCollectionValue CollectionValue.sort(java.util.Comparator<java.lang.Object> comparator)
           
 

Methods in org.eclipse.ocl.examples.domain.values with parameters of type OrderedCollectionValue
 OrderedCollectionValue OrderedCollectionValue.appendAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue OrderedCollectionValue.prependAll(OrderedCollectionValue objects)
           
 

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

Classes in org.eclipse.ocl.examples.domain.values.impl that implement OrderedCollectionValue
 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 OrderedSetValueImpl
           
 class RangeOrderedSetValueImpl
           
 class RangeSequenceValueImpl
           
 class SequenceValueImpl
           
 class SparseOrderedSetValueImpl
           
static class SparseOrderedSetValueImpl.Accumulator
           
 class SparseSequenceValueImpl
           
static class SparseSequenceValueImpl.Accumulator
           
 class UndefinedValueImpl
           
 

Methods in org.eclipse.ocl.examples.domain.values.impl that return OrderedCollectionValue
 OrderedCollectionValue SequenceValueImpl.append(java.lang.Object object)
           
 OrderedCollectionValue UndefinedValueImpl.append(java.lang.Object object)
           
 OrderedCollectionValue SequenceValueImpl.appendAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue UndefinedValueImpl.appendAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue NumberValueImpl.asOrderedCollectionValue()
           
 OrderedCollectionValue OrderedSetValueImpl.asOrderedCollectionValue()
           
 OrderedCollectionValue SequenceValueImpl.asOrderedCollectionValue()
           
 OrderedCollectionValue UndefinedValueImpl.asOrderedCollectionValue()
           
 OrderedCollectionValue ValueImpl.asOrderedCollectionValue()
           
 OrderedCollectionValue UndefinedValueImpl.prepend(java.lang.Object object)
           
 OrderedCollectionValue UndefinedValueImpl.prependAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue UndefinedValueImpl.reverse()
           
 

Methods in org.eclipse.ocl.examples.domain.values.impl with parameters of type OrderedCollectionValue
 OrderedSetValue OrderedSetValueImpl.appendAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue SequenceValueImpl.appendAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue UndefinedValueImpl.appendAll(OrderedCollectionValue objects)
           
 OrderedSetValue OrderedSetValueImpl.prependAll(OrderedCollectionValue objects)
           
 SequenceValue SequenceValueImpl.prependAll(OrderedCollectionValue objects)
           
 OrderedCollectionValue UndefinedValueImpl.prependAll(OrderedCollectionValue objects)
           
 

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

Methods in org.eclipse.ocl.examples.domain.values.util that return OrderedCollectionValue
static OrderedCollectionValue ValuesUtil.asOrderedCollectionValue(java.lang.Object value)
           
 

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

Uses of OrderedCollectionValue in org.eclipse.ocl.examples.library.collection
 

Methods in org.eclipse.ocl.examples.library.collection that return OrderedCollectionValue
 OrderedCollectionValue OrderedCollectionReverseOperation.evaluate(java.lang.Object argument)
           
 OrderedCollectionValue OrderedCollectionAppendAllOperation.evaluate(java.lang.Object left, java.lang.Object right)
           
 OrderedCollectionValue OrderedCollectionAppendOperation.evaluate(java.lang.Object left, java.lang.Object right)
           
 OrderedCollectionValue OrderedCollectionPrependAllOperation.evaluate(java.lang.Object left, java.lang.Object right)
           
 OrderedCollectionValue OrderedCollectionPrependOperation.evaluate(java.lang.Object left, java.lang.Object right)
           
 OrderedCollectionValue OrderedCollectionInsertAtOperation.evaluate(java.lang.Object sourceValue, java.lang.Object firstArgumentValue, java.lang.Object secondArgumentValue)