corda / net.corda.core.transactions / LedgerTransaction / filterInputs

filterInputs

fun <T : ContractState> filterInputs(clazz: Class<T>, predicate: Predicate<T>): List<T>

Helper to simplify filtering inputs according to a Predicate.

Parameters

clazz - The class type used for filtering via an Class.isInstance check. clazz must be an extension of ContractState.

predicate - A filtering function taking a state of type T and returning true if it should be included in the list. The class filtering is applied before the predicate.

Return
the possibly empty list of input states matching the predicate and clazz restrictions.

inline fun <reified T : ContractState> filterInputs(crossinline predicate: (T) -> Boolean): List<T>