Interface GetStatementOptional
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Either supplies a statement matching the given pattern, or 
Optional.empty() otherwise.- Author:
 - Peter Ansell
 
- 
Method Summary
 
- 
Method Details
- 
get
Either supplies a statement matching the given pattern, orOptional.empty()otherwise.- Parameters:
 subject- AResourceto be used to match to statements.predicate- AnIRIto be used to match to statements.object- AValueto be used to match to statements.contexts- An array of contextResourceobjects, or left out (not null) to select from all contexts.- Returns:
 - An 
Optionaleither containing a single statement matching the pattern orOptional.empty()otherwise. 
 
 -