Package | Description |
---|---|
org.picketlink.idm.query |
Modifier and Type | Method and Description |
---|---|
Condition |
IdentityQueryBuilder.between(QueryParameter parameter,
Object x,
Object y)
Create a condition for testing whether the query parameter is between the given values.
|
Condition |
IdentityQueryBuilder.equal(QueryParameter parameter,
Object value)
Create a condition for testing the arguments for equality.
|
Condition |
IdentityQueryBuilder.greaterThan(QueryParameter parameter,
Object x)
Create a condition for testing whether the query parameter is grater than the given value..
|
Condition |
IdentityQueryBuilder.greaterThanOrEqualTo(QueryParameter parameter,
Object x)
Create a condition for testing whether the query parameter is grater than or equal to the given value..
|
Condition |
IdentityQueryBuilder.in(QueryParameter parameter,
Object... values)
Create a condition for testing whether the query parameter is contained in a list of values.
|
Condition |
IdentityQueryBuilder.lessThan(QueryParameter parameter,
Object x)
Create a condition for testing whether the query parameter is less than the given value..
|
Condition |
IdentityQueryBuilder.lessThanOrEqualTo(QueryParameter parameter,
Object x)
Create a condition for testing whether the query parameter is less than or equal to the given value..
|
Condition |
IdentityQueryBuilder.like(QueryParameter parameter,
String pattern)
Create a condition for testing the whether the query parameter satisfies the given pattern..
|
Modifier and Type | Method and Description |
---|---|
Set<Condition> |
IdentityQuery.getConditions()
Returns a set containing all conditions used by this query to filter its results.
|
Modifier and Type | Method and Description |
---|---|
IdentityQuery<T> |
IdentityQuery.where(Condition... condition)
Add to this query the conditions that will be used to filter results.
|
Copyright © 2015 JBoss by Red Hat. All rights reserved.