public class SearchResult extends Object implements Iterable<BaseSignature>
Result of searching for signatures in specified document.
Modifier and Type | Method and Description |
---|---|
List<BaseSignature> |
getSignatures()
List of detected signatures
BaseSignature . |
<T extends BaseSignature> |
toList(Class<T> typeOfT)
Provides conversion to strongly typed list of signatures.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, iterator, spliterator
public final List<BaseSignature> getSignatures()
List of detected signatures BaseSignature
.
public final <T extends BaseSignature> List<T> toList(Class<T> typeOfT)
Provides conversion to strongly typed list of signatures.
T
: The type of signatures in the list.