Interface DropDownDefinitionQuery
- All Superinterfaces:
QueryBuilder<DropDownDefinition>
Interface for building queries to retrieve
DropDownDefinition entities.
This interface extends QueryBuilder and provides methods to construct queries
based on the ID and name of a DropDownDefinition. It supports method chaining for
creating complex queries.
Example usage:
DropDownDefinitionQuery query = service.createDropDownDefinitionQuery()
.id(123)
.name("Category");
List<DropDownDefinition> results = query.list(); // retrieve list of dropdown definitions
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionSets the ID of theDropDownDefinitionin the query.Sets the name of theDropDownDefinitionin the query.Methods inherited from interface com.priint.pubserverapi.query.QueryBuilder
list, singleResult
-
Method Details
-
id
Sets the ID of theDropDownDefinitionin the query.- Parameters:
id- the ID of the dropdown definition- Returns:
- the current
DropDownDefinitionQueryinstance for method chaining
-
name
Sets the name of theDropDownDefinitionin the query.- Parameters:
id- the name of the dropdown definition- Returns:
- the current
DropDownDefinitionQueryinstance for method chaining
-