Package org.nuxeo.ecm.platform.query.api
Interface WhereClauseDefinition
- All Known Implementing Classes:
 WhereClauseDefinitionBuilder.WhereClauseDefinitionImpl,WhereClauseDescriptor
public interface WhereClauseDefinition
- 
Method Summary
Modifier and TypeMethodDescriptiondefault WhereClauseDefinitionBuilderbuilder()booleanbooleanReturn the custom select statement used by the fixed part ("select * from Document" for NXQL queries, for instance).voidsetFixedPart(String fixedPart) voidsetFixedPath(String fixedPart) voidsetPredicates(PredicateDefinition[] predicates)  
- 
Method Details
- 
setFixedPath
 - 
getQuoteFixedPartParameters
boolean getQuoteFixedPartParameters() - 
getEscapeFixedPartParameters
boolean getEscapeFixedPartParameters() - 
getPredicates
PredicateDefinition[] getPredicates() - 
setPredicates
 - 
getFixedPart
String getFixedPart() - 
setFixedPart
 - 
getEscaperClass
 - 
getSelectStatement
String getSelectStatement()Return the custom select statement used by the fixed part ("select * from Document" for NXQL queries, for instance).- Since:
 - 5.9.2
 
 - 
builder
- Since:
 - 2025.0
 
 
 -