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

Packages that use ExecutableArrayOperator
org.op4j.operators.impl.fn.array   
org.op4j.operators.intf.array   
org.op4j.operators.qualities   
 

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

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

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

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

Uses of ExecutableArrayOperator in org.op4j.operators.qualities
 

Methods in org.op4j.operators.qualities that return ExecutableArrayOperator
 ExecutableArrayOperator<T> ExecutableArrayOperator.execAsArray(IFunction<? super T[],? extends T[]> function)
           Executes the specified function on the target object, creating a new operator containing the result of the execution.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.execAsArrayOf(org.javaruntype.type.Type<X> type, IFunction<? super T[],X[]> function)
           Executes the specified function on the target object, creating a new operator containing the result of the execution.
 ExecutableArrayOperator<T> ExecutableArrayOperator.execIfFalseAsArray(IFunction<? super T[],Boolean> eval, IFunction<? super T[],? extends T[]> function)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.execIfFalseAsArrayOf(org.javaruntype.type.Type<X> type, IFunction<? super T[],Boolean> eval, IFunction<? super T[],X[]> function, IFunction<? super T[],X[]> elseFunction)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
 ExecutableArrayOperator<T> ExecutableArrayOperator.execIfNotNullAsArray(IFunction<? super T[],? extends T[]> function)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.execIfNotNullAsArrayOf(org.javaruntype.type.Type<X> type, IFunction<? super T[],X[]> function, IFunction<? super T[],X[]> elseFunction)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
 ExecutableArrayOperator<T> ExecutableArrayOperator.execIfNullAsArray(IFunction<? super T[],? extends T[]> function)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.execIfNullAsArrayOf(org.javaruntype.type.Type<X> type, IFunction<? super T[],X[]> function, IFunction<? super T[],X[]> elseFunction)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
 ExecutableArrayOperator<T> ExecutableArrayOperator.execIfTrueAsArray(IFunction<? super T[],Boolean> eval, IFunction<? super T[],? extends T[]> function)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.execIfTrueAsArrayOf(org.javaruntype.type.Type<X> type, IFunction<? super T[],Boolean> eval, IFunction<? super T[],X[]> function, IFunction<? super T[],X[]> elseFunction)
           Executes a function in a way equivalent to execAsArray(IFunction) but only on selected elements, leaving all other elements untouched.
 ExecutableArrayOperator<T> ExecutableArrayOperator.map(IFunction<? super T,? extends T> function)
           Executes the specified function on each of the elements, creating a new operator containing the result of all the executions but not changing the operator type.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.map(org.javaruntype.type.Type<X> type, IFunction<? super T,X> function)
           Executes the specified function on each of the elements, creating a new operator containing the result of all the executions and setting the new operator type to the one specified.
 ExecutableArrayOperator<T> ExecutableArrayOperator.mapIfFalse(IFunction<? super T,Boolean> eval, IFunction<? super T,? extends T> function)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.mapIfFalse(org.javaruntype.type.Type<X> type, IFunction<? super T,Boolean> eval, IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
 ExecutableArrayOperator<T> ExecutableArrayOperator.mapIfNotNull(IFunction<? super T,? extends T> function)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.mapIfNotNull(org.javaruntype.type.Type<X> type, IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
 ExecutableArrayOperator<T> ExecutableArrayOperator.mapIfNull(IFunction<? super T,? extends T> function)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.mapIfNull(org.javaruntype.type.Type<X> type, IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
 ExecutableArrayOperator<T> ExecutableArrayOperator.mapIfTrue(IFunction<? super T,Boolean> eval, IFunction<? super T,? extends T> function)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
<X> ExecutableArrayOperator<X>
ExecutableArrayOperator.mapIfTrue(org.javaruntype.type.Type<X> type, IFunction<? super T,Boolean> eval, IFunction<? super T,X> function, IFunction<? super T,X> elseFunction)
           Maps a function in a way equivalent to map(IFunction) but only on selected elements, leaving all other elements untouched.
 



Copyright © 2012 The OP4J team. All Rights Reserved.