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

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

Uses of Level0ListOperator in org.op4j.functions
 

Methods in org.op4j.functions that return Level0ListOperator
static
<T> Level0ListOperator<List<T>,T>
Fn.onListOf(org.javaruntype.type.Type<T> type)
           Creates a function expression for building a function operating on a target object of type List<T>, being Type<T> a type specified as a parameter.
static Level0ListOperator<List<BigDecimal>,BigDecimal> Fn.onListOfBigDecimal()
           Creates a function expression for building a function operating on a target object of type List<BigDecimal>.
static Level0ListOperator<List<BigInteger>,BigInteger> Fn.onListOfBigInteger()
           Creates a function expression for building a function operating on a target object of type List<BigInteger>.
static Level0ListOperator<List<Boolean>,Boolean> Fn.onListOfBoolean()
           Creates a function expression for building a function operating on a target object of type List<Boolean>.
static Level0ListOperator<List<Byte>,Byte> Fn.onListOfByte()
           Creates a function expression for building a function operating on a target object of type List<Byte>.
static Level0ListOperator<List<Calendar>,Calendar> Fn.onListOfCalendar()
           Creates a function expression for building a function operating on a target object of type List<Calendar>.
static Level0ListOperator<List<Character>,Character> Fn.onListOfCharacter()
           Creates a function expression for building a function operating on a target object of type List<Character>.
static Level0ListOperator<List<Date>,Date> Fn.onListOfDate()
           Creates a function expression for building a function operating on a target object of type List<Date>.
static Level0ListOperator<List<Double>,Double> Fn.onListOfDouble()
           Creates a function expression for building a function operating on a target object of type List<Double>.
static Level0ListOperator<List<Float>,Float> Fn.onListOfFloat()
           Creates a function expression for building a function operating on a target object of type List<Float>.
static Level0ListOperator<List<Integer>,Integer> Fn.onListOfInteger()
           Creates a function expression for building a function operating on a target object of type List<Integer>.
static Level0ListOperator<List<Long>,Long> Fn.onListOfLong()
           Creates a function expression for building a function operating on a target object of type List<Long>.
static Level0ListOperator<List<Object>,Object> Fn.onListOfObject()
           Creates a function expression for building a function operating on a target object of type List<Object>.
static Level0ListOperator<List<Short>,Short> Fn.onListOfShort()
           Creates a function expression for building a function operating on a target object of type List<Short>.
static Level0ListOperator<List<String>,String> Fn.onListOfString()
           Creates a function expression for building a function operating on a target object of type List<String>.
 

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

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

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

Methods in org.op4j.operators.impl.fn.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.fn.list
 

Methods in org.op4j.operators.impl.fn.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.fn.map
 

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

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

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



Copyright © 2012 The OP4J team. All Rights Reserved.