ObjectDB ObjectDB

distinct(distinct) - JPA CriteriaQuery's method

Method
javax.persistence.criteria.CriteriaQuery
CriteriaQuery<T> distinct(
  boolean distinct
)

Specify whether duplicate query results will be eliminated. A true value will cause duplicates to be eliminated. A false value will cause duplicates to be retained. If distinct has not been specified, duplicate results must be retained. This method only overrides the return type of the corresponding AbstractQuery method.
Parameters:
distinct - boolean value specifying whether duplicate results must be eliminated from the query result or whether they must be retained
Returns:
the modified query.
Since:
JPA 2.0