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.
|
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.