Interface DropDownValueQuery

All Superinterfaces:
QueryBuilder<DropDownValue>

public interface DropDownValueQuery extends 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: