Uses of Interface
org.op4j.operators.qualities.ModifiableCollectionOperator

Packages that use ModifiableCollectionOperator
org.op4j.operators.impl.fn.array   
org.op4j.operators.impl.fn.list   
org.op4j.operators.impl.fn.set   
org.op4j.operators.intf.array   
org.op4j.operators.intf.list   
org.op4j.operators.intf.set   
org.op4j.operators.qualities   
 

Uses of ModifiableCollectionOperator in org.op4j.operators.impl.fn.array
 

Classes in org.op4j.operators.impl.fn.array that implement ModifiableCollectionOperator
 class Level0ArrayOperator<I,T>
           
 class Level0ArraySelectedOperator<I,T>
           
 

Uses of ModifiableCollectionOperator in org.op4j.operators.impl.fn.list
 

Classes in org.op4j.operators.impl.fn.list that implement ModifiableCollectionOperator
 class Level0ListOperator<I,T>
           
 class Level0ListSelectedOperator<I,T>
           
 

Uses of ModifiableCollectionOperator in org.op4j.operators.impl.fn.set
 

Classes in org.op4j.operators.impl.fn.set that implement ModifiableCollectionOperator
 class Level0SetOperator<I,T>
           
 class Level0SetSelectedOperator<I,T>
           
 

Uses of ModifiableCollectionOperator in org.op4j.operators.intf.array
 

Subinterfaces of ModifiableCollectionOperator in org.op4j.operators.intf.array
 interface ILevel0ArrayOperator<I,T>
           
 interface ILevel0ArraySelectedOperator<I,T>
           
 

Uses of ModifiableCollectionOperator in org.op4j.operators.intf.list
 

Subinterfaces of ModifiableCollectionOperator in org.op4j.operators.intf.list
 interface ILevel0ListOperator<I,T>
           
 interface ILevel0ListSelectedOperator<I,T>
           
 

Uses of ModifiableCollectionOperator in org.op4j.operators.intf.set
 

Subinterfaces of ModifiableCollectionOperator in org.op4j.operators.intf.set
 interface ILevel0SetOperator<I,T>
           
 interface ILevel0SetSelectedOperator<I,T>
           
 

Uses of ModifiableCollectionOperator in org.op4j.operators.qualities
 

Methods in org.op4j.operators.qualities that return ModifiableCollectionOperator
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.add(T newElement)
           Adds the specified element at the end of the target structure object.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.addAll(Collection<T> collection)
           Adds all the elements in the specified collection to the target structure object.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.addAll(T... newElements)
           Adds all the specified elements at the end of the target structure object.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.insert(int position, T newElement)
           Inserts a new element into the specified position (starting in 0) of the target structure object.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.insertAll(int position, T... newElements)
           Inserts new elements into the specified position (starting in 0) of the target structure object.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllEqual(T... values)
           Removes the specified values from the target structure object.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllFalse(IFunction<? super T,Boolean> eval)
           Removes from the target structure object all the elements which evaluate as false using the specified evaluator.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllIndexes(int... indexes)
           Removes all the elements in the target structure object which position (index) in it matches one the specified indexes.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllIndexesNot(int... indexes)
           Removes all the elements in the target structure object except those which position (index) in it matches one of the specified indexes.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllNotNullAndFalse(IFunction<? super T,Boolean> eval)
           Removes from the target structure object all the elements which are not null and evaluate as false using the specified evaluator.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllNotNullAndTrue(IFunction<? super T,Boolean> eval)
           Removes from the target structure object all the elements which are not null and evaluate as true using the specified evaluator.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllNull()
           Remove all the null elements in the target structure object.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllNullOrFalse(IFunction<? super T,Boolean> eval)
           Removes from the target structure object all the elements which either are null or evaluate as false using the specified evaluator.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllNullOrTrue(IFunction<? super T,Boolean> eval)
           Removes from the target structure object all the elements which either are null or evaluate as true using the specified evaluator.
 ModifiableCollectionOperator<T> ModifiableCollectionOperator.removeAllTrue(IFunction<? super T,Boolean> eval)
           Removes from the target structure object all the elements which evaluate as true using the specified evaluator.
 



Copyright © 2012 The OP4J team. All Rights Reserved.