Uses of Class
org.op4j.operators.impl.op.list.Level0ListOperator

Packages that use Level0ListOperator
org.op4j   
org.op4j.operators.impl.op.array   
org.op4j.operators.impl.op.generic   
org.op4j.operators.impl.op.list   
org.op4j.operators.impl.op.map   
org.op4j.operators.impl.op.set   
 

Uses of Level0ListOperator in org.op4j
 

Methods in org.op4j that return Level0ListOperator
static
<T> Level0ListOperator<List<T>,T>
Op.on(List<T> target)
           Creates an operation expression on the specified target object.
static
<T> Level0ListOperator<List<T>,T>
Op.on(org.javaruntype.type.Type<List<T>> type, List<? extends T> target)
           Creates an operation expression on the specified target object, specifying the target type by means of the type parameter.
static
<T> Level0ListOperator<List<T>,T>
Op.onList(List<T> target)
           Creates an operation expression on the specified target object.
static
<T> Level0ListOperator<List<T>,T>
Op.onListFor(T... elements)
           Creates a list with the specified elements and an operation expression on it.
static
<T> Level0ListOperator<List<T>,T>
Op.onListOf(org.javaruntype.type.Type<T> type, List<? extends T> target)
           Creates an operation expression on the specified target object, specifying the target type by means of the type parameter.
 

Uses of Level0ListOperator in org.op4j.operators.impl.op.array
 

Methods in org.op4j.operators.impl.op.array that return Level0ListOperator
 Level0ListOperator<I,T> Level0IndefiniteArrayOperator.toList()
           
 Level0ListOperator<I,T> Level0ArrayOperator.toList()
           
 

Uses of Level0ListOperator in org.op4j.operators.impl.op.generic
 

Methods in org.op4j.operators.impl.op.generic that return Level0ListOperator
<X> Level0ListOperator<I,X>
Level0GenericUniqOperator.castToListOf(org.javaruntype.type.Type<X> type)
           
 Level0ListOperator<I,T> Level0GenericUniqOperator.intoSingletonList()
           
 

Uses of Level0ListOperator in org.op4j.operators.impl.op.list
 

Methods in org.op4j.operators.impl.op.list that return Level0ListOperator
 Level0ListOperator<I,T> Level0ListOperator.add(T newElement)
           
 Level0ListOperator<I,T> Level0ListOperator.addAll(Collection<T> collection)
           
 Level0ListOperator<I,T> Level0ListOperator.addAll(T... newElements)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.castToListOf(org.javaruntype.type.Type<X> type)
           
 Level0ListOperator<I,T> Level0ListOperator.distinct()
           
 Level0ListOperator<I,T> Level1ListElementsOperator.endFor()
           
 Level0ListOperator<I,T> Level0ListSelectedOperator.endIf()
           
<X> Level0ListOperator<I,X>
Level0ListOperator.execAsList(IFunction<? super List<T>,? extends List<X>> function)
           
 Level0ListOperator<I,T> Level0ListOperator.execIfFalseAsList(IFunction<? super List<T>,Boolean> eval, IFunction<? super List<T>,? extends List<? extends T>> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.execIfFalseAsList(IFunction<? super List<T>,Boolean> eval, IFunction<? super List<T>,? extends List<X>> function, IFunction<? super List<T>,? extends List<X>> elseFunction)
           
 Level0ListOperator<I,T> Level0ListOperator.execIfNotNullAsList(IFunction<? super List<T>,? extends List<? extends T>> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.execIfNotNullAsList(IFunction<? super List<T>,? extends List<X>> function, IFunction<? super List<T>,? extends List<X>> elseFunction)
           
 Level0ListOperator<I,T> Level0ListOperator.execIfNullAsList(IFunction<? super List<T>,? extends List<? extends T>> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.execIfNullAsList(IFunction<? super List<T>,? extends List<X>> function, IFunction<? super List<T>,? extends List<X>> elseFunction)
           
 Level0ListOperator<I,T> Level0ListOperator.execIfTrueAsList(IFunction<? super List<T>,Boolean> eval, IFunction<? super List<T>,? extends List<? extends T>> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.execIfTrueAsList(IFunction<? super List<T>,Boolean> eval, IFunction<? super List<T>,? extends List<X>> function, IFunction<? super List<T>,? extends List<X>> elseFunction)
           
 Level0ListOperator<I,T> Level0ListOperator.insert(int position, T newElement)
           
 Level0ListOperator<I,T> Level0ListOperator.insertAll(int position, T... newElements)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.map(IFunction<? super T,X> function)
           
 Level0ListOperator<I,T> Level0ListOperator.mapIfFalse(IFunction<? super T,Boolean> eval, IFunction<? super T,? extends T> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.mapIfFalse(IFunction<? super T,Boolean> eval, IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           
 Level0ListOperator<I,T> Level0ListOperator.mapIfNotNull(IFunction<? super T,? extends T> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.mapIfNotNull(IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           
 Level0ListOperator<I,T> Level0ListOperator.mapIfNull(IFunction<? super T,? extends T> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.mapIfNull(IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           
 Level0ListOperator<I,T> Level0ListOperator.mapIfTrue(IFunction<? super T,Boolean> eval, IFunction<? super T,? extends T> function)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.mapIfTrue(IFunction<? super T,Boolean> eval, IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           
<X> Level0ListOperator<I,X>
Level0ListOperator.of(org.javaruntype.type.Type<X> type)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllEqual(T... values)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllFalse(IFunction<? super T,Boolean> eval)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllIndexes(int... indexes)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllIndexesNot(int... indexes)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllNotNullAndFalse(IFunction<? super T,Boolean> eval)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllNotNullAndTrue(IFunction<? super T,Boolean> eval)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllNull()
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllNullOrFalse(IFunction<? super T,Boolean> eval)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllNullOrTrue(IFunction<? super T,Boolean> eval)
           
 Level0ListOperator<I,T> Level0ListOperator.removeAllTrue(IFunction<? super T,Boolean> eval)
           
 Level0ListOperator<I,T> Level0ListOperator.replaceIfNullWith(List<T> replacement)
           
 Level0ListOperator<I,T> Level0ListOperator.replaceWith(List<T> replacement)
           
 Level0ListOperator<I,T> Level0ListOperator.reverse()
           
 Level0ListOperator<I,T> Level0ListOperator.sort()
           
 Level0ListOperator<I,T> Level0ListOperator.sort(Comparator<? super T> comparator)
           
 Level0ListOperator<I,T> Level0ListOperator.sortBy(IFunction<? super T,?> by)
           
 

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

Methods in org.op4j.operators.impl.op.map that return Level0ListOperator
 Level0ListOperator<I,V> Level0MapOperator.extractValues()
           
 Level0ListOperator<I,V> Level0BuildingMapOperator.extractValues()
           
 

Uses of Level0ListOperator in org.op4j.operators.impl.op.set
 

Methods in org.op4j.operators.impl.op.set that return Level0ListOperator
 Level0ListOperator<I,T> Level0SetOperator.toList()
           
 



Copyright © 2012 The OP4J team. All Rights Reserved.