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

Packages that use ModifiableMapOperator
org.op4j.operators.impl.fn.map   
org.op4j.operators.impl.op.map   
org.op4j.operators.intf.map   
org.op4j.operators.qualities   
 

Uses of ModifiableMapOperator in org.op4j.operators.impl.fn.map
 

Classes in org.op4j.operators.impl.fn.map that implement ModifiableMapOperator
 class Level0MapOperator<I,K,V>
           
 class Level0MapSelectedOperator<I,K,V>
           
 

Uses of ModifiableMapOperator in org.op4j.operators.impl.op.map
 

Classes in org.op4j.operators.impl.op.map that implement ModifiableMapOperator
 class Level0BuildingMapOperator<I,K,V>
           
 

Uses of ModifiableMapOperator in org.op4j.operators.intf.map
 

Subinterfaces of ModifiableMapOperator in org.op4j.operators.intf.map
 interface ILevel0BuildingMapOperator<I,K,V>
           
 interface ILevel0MapOperator<I,K,V>
           
 interface ILevel0MapSelectedOperator<I,K,V>
           
 

Uses of ModifiableMapOperator in org.op4j.operators.qualities
 

Methods in org.op4j.operators.qualities that return ModifiableMapOperator
 ModifiableMapOperator<K,V> ModifiableMapOperator.insert(int position, K newKey, V newValue)
           Inserts a new entry with the specified key and value into the specified position (starting in 0) of the target map.
 ModifiableMapOperator<K,V> ModifiableMapOperator.insertAll(int position, Map<K,V> map)
           Inserts all the entries in the specified map to the target map, in the specified position.
 ModifiableMapOperator<K,V> ModifiableMapOperator.put(K newKey, V newValue)
           Adds a new entry with the specified key and value at the end of the target map.
 ModifiableMapOperator<K,V> ModifiableMapOperator.putAll(Map<K,V> map)
           Adds all the entries in the specified map to the target map.
 ModifiableMapOperator<K,V> ModifiableMapOperator.removeAllFalse(IFunction<? super Map.Entry<K,V>,Boolean> eval)
           Removes from the target map all the entries which evaluate as false using the specified evaluator.
 ModifiableMapOperator<K,V> ModifiableMapOperator.removeAllKeys(K... keys)
           Removes from the target map all entries which keys match the ones specified.
 ModifiableMapOperator<K,V> ModifiableMapOperator.removeAllKeysNot(K... keys)
           Removes from the target map all entries except those which keys match the ones specified.
 ModifiableMapOperator<K,V> ModifiableMapOperator.removeAllTrue(IFunction<? super Map.Entry<K,V>,Boolean> eval)
           Removes from the target map all the entries which evaluate as true using the specified evaluator.
 



Copyright © 2012 The OP4J team. All Rights Reserved.