corda / net.corda.core.transactions / BaseTransaction / findOutRef

findOutRef

fun <T : ContractState> findOutRef(clazz: Class<T>, predicate: Predicate<T>): StateAndRef<T>

Helper to simplify finding a single output StateAndRef matching 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 this is the desired item. The class filtering is applied before the predicate.

Exceptions

IllegalArgumentException - if no item, or multiple items are found matching the requirements.

Return
the single StateAndRef item matching the predicate.

inline fun <reified T : ContractState> findOutRef(crossinline predicate: (T) -> Boolean): StateAndRef<T>