ObjectDB ObjectDB

distinct(distinct) - JPA AbstractQuery's method

Method
javax.persistence.criteria.AbstractQuery
AbstractQuery<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.
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