Interface DropDownValueQuery
- All Superinterfaces:
QueryBuilder<DropDownValue>
Interface for building queries to retrieve
DropDownValue entities.
This interface extends QueryBuilder and provides methods to construct queries
based on various attributes of a DropDownValue, such as ID, parent dropdown definition ID,
and different value fields. It allows method chaining to create complex queries.
Example usage:
DropDownValueQuery query = service.createDropDownValueQuery()
.id(123)
.value1("SomeValue");
List<DropDownValue> results = query.list(); // retrieve list of dropdown values
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionSets the ID of theDropDownValuein the query.Sets the parent dropdown definition ID of theDropDownValuein the query.Sets the first value field of theDropDownValuein the query.Sets the second value field of theDropDownValuein the query.Sets the third value field of theDropDownValuein the query.Methods inherited from interface com.priint.pubserverapi.query.QueryBuilder
list, singleResult
-
Method Details
-
id
Sets the ID of theDropDownValuein the query.- Parameters:
id- the ID of the dropdown value- Returns:
- the current
DropDownValueQueryinstance for method chaining
-
parentDropDownDefinitionId
Sets the parent dropdown definition ID of theDropDownValuein the query.- Parameters:
id- the parent dropdown definition ID- Returns:
- the current
DropDownValueQueryinstance for method chaining
-
value1
Sets the first value field of theDropDownValuein the query.- Parameters:
value1- the first value field- Returns:
- the current
DropDownValueQueryinstance for method chaining
-
value2
Sets the second value field of theDropDownValuein the query.- Parameters:
value2- the second value field- Returns:
- the current
DropDownValueQueryinstance for method chaining
-
value3
Sets the third value field of theDropDownValuein the query.- Parameters:
value3- the third value field- Returns:
- the current
DropDownValueQueryinstance for method chaining
-