Interface DropDownLanguageQuery
- All Superinterfaces:
QueryBuilder<DropDownLanguage>
Interface for building queries to retrieve
DropDownLanguage entities.
This interface extends QueryBuilder and provides methods to construct queries
based on attributes of a DropDownLanguage, such as ID, parent dropdown value ID,
and various value fields. It supports method chaining for constructing complex queries.
Example usage:
DropDownLanguageQuery query = service.createDropDownLanguageQuery()
.id(123)
.value1("English");
List<DropDownLanguage> results = query.list(); // retrieve list of dropdown languages
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault DropDownLanguageQuerySets the country field of theDropDownLanguagein the query.Sets the ID of theDropDownLanguagein the query.default DropDownLanguageQuerySets the language field of theDropDownLanguagein the query.Sets the parent dropdown value ID of theDropDownLanguagein the query.Sets the first value field of theDropDownLanguagein the query.Sets the second value field of theDropDownLanguagein the query.Sets the third value field of theDropDownLanguagein the query.Methods inherited from interface com.priint.pubserverapi.query.QueryBuilder
list, singleResult
-
Method Details
-
id
Sets the ID of theDropDownLanguagein the query.- Parameters:
id- the ID of the dropdown language- Returns:
- the current
DropDownLanguageQueryinstance for method chaining
-
parentDropDownValueId
Sets the parent dropdown value ID of theDropDownLanguagein the query.- Parameters:
id- the parent dropdown value ID- Returns:
- the current
DropDownLanguageQueryinstance for method chaining
-
value1
Sets the first value field of theDropDownLanguagein the query.- Parameters:
value1- the first value field- Returns:
- the current
DropDownLanguageQueryinstance for method chaining
-
value2
Sets the second value field of theDropDownLanguagein the query.- Parameters:
value2- the second value field- Returns:
- the current
DropDownLanguageQueryinstance for method chaining
-
value3
Sets the third value field of theDropDownLanguagein the query.- Parameters:
value3- the third value field- Returns:
- the current
DropDownLanguageQueryinstance for method chaining
-
language
Sets the language field of theDropDownLanguagein the query.- Parameters:
language- the language- Returns:
- the current
DropDownLanguageQueryinstance for method chaining
-
country
Sets the country field of theDropDownLanguagein the query.- Parameters:
country- the country- Returns:
- the current
DropDownLanguageQueryinstance for method chaining
-