Modifier and Type | Class and Description |
---|---|
class |
TypedFilter<T> |
Modifier and Type | Method and Description |
---|---|
static <T> TypedFilter<T> |
TypedFilter.create(Class<T> type,
Filter<? super T> filter)
Creates and returns a class based type filter based on given
filter instance. |
Modifier and Type | Interface and Description |
---|---|
static interface |
Filter.TypedFilter<T>
Typed filter. |
Modifier and Type | Class and Description |
---|---|
static class |
Filter.AndFilter<T> |
static class |
Filter.CombinedFilter<T> |
static class |
Filter.EqualFilter<T> |
static class |
Filter.ImpliesFilter<T> |
static class |
Filter.NotFilter<T> |
static class |
Filter.OrFilter<T> |
Modifier and Type | Method and Description |
---|---|
static <T> Filter<T> |
Filter.Util.acceptAll() |
static <T> Filter<T> |
Filter.Util.acceptNothing() |
static <T> Filter<T> |
Filter.Util.and(Collection<Filter<T>> f) |
static <T> Filter<T> |
Filter.Util.and(Filter<T>... f) |
static <T> Filter<T> |
Filter.Util.equal(T value) |
static <T> Filter<T> |
Filter.Util.implies(Filter<T> condition,
Filter<T> implication)
a implies b is equivalent to not(a) or b.
|
static <T> Filter<T> |
Filter.Util.not(Filter<T> f) |
static <T> Filter<T> |
Filter.Util.notNull() |
static <T> Filter<T> |
Filter.Util.or(Collection<Filter<T>> f) |
static <T> Filter<T> |
Filter.Util.or(Filter<T>... f) |
Modifier and Type | Method and Description |
---|---|
static <T> Filter<T> |
Filter.Util.and(Filter<T>... f) |
static <T,C extends Collection<T>> |
Filter.Util.doFilter(Collection<T> source,
Filter<T> filter,
C target)
Copies all matching entries of collection source to collection target.
|
List<E> |
ElementProvider.getElements(E first,
E last,
int max,
Filter<E> filter)
Get a list of elements in the given range including a defined maximum number of elements that pass the
provided filter.
|
static <T> Filter<T> |
Filter.Util.implies(Filter<T> condition,
Filter<T> implication)
a implies b is equivalent to not(a) or b.
|
static <T> Filter<T> |
Filter.Util.implies(Filter<T> condition,
Filter<T> implication)
a implies b is equivalent to not(a) or b.
|
static <T> Filter<T> |
Filter.Util.not(Filter<T> f) |
static <T> Filter<T> |
Filter.Util.or(Filter<T>... f) |
Modifier and Type | Method and Description |
---|---|
static <T> Filter<T> |
Filter.Util.and(Collection<Filter<T>> f) |
static <T> Filter<T> |
Filter.Util.or(Collection<Filter<T>> f) |
Modifier and Type | Method and Description |
---|---|
List<DeletedElementsInfo> |
UserService.getDeletedElementInfos(long startRevisionId,
int resultCount,
Filter<ElementInfo> filter)
Get a list of information objects for deleted elements matching the given filter.
|
Modifier and Type | Method and Description |
---|---|
Collection<Subscription> |
PackageManager.getSubscriptions(Filter<Subscription> filter)
Returns a read-only collection of all
Subscription 's
which matches the given filter. |
Modifier and Type | Method and Description |
---|---|
List<RemoteProjectConfiguration> |
Project.getRemoteProjectConfigurations(Filter<RemoteProjectConfiguration> filter)
Returns the list of remote project configurations for this project that pass the given filter.
|
List<Revision> |
Project.getRevisions(Revision from,
Revision to,
int maxCount,
Filter<Revision> filter)
Returns a list of revisions in descending order.
|
Modifier and Type | Class and Description |
---|---|
class |
StoreElementFilter |
Modifier and Type | Method and Description |
---|---|
static <T extends StoreElement> |
StoreElementFilter.create(Class<T> type,
Filter<StoreElement> filter) |
static StoreElementFilter |
StoreElementFilter.create(Filter<StoreElement> filter) |
Modifier and Type | Field and Description |
---|---|
static Filter<Revision> |
RevisionFilter.CREATE_FILTER
This filter accepts all revisions with
operations belonging to
create operations (CreateOperation , ContentOperation with created entities |
static Filter<Revision> |
RevisionFilter.DELETE_FILTER
This filter accepts all revisions with
operations belonging to
delete operations (DeleteOperation , ContentOperation with deleted entities |
static Filter<Revision> |
RevisionFilter.MODIFY_FILTER
This filter accepts all revisions with
operations belonging to
modify operations (ModifyOperation , MoveOperation , ContentOperation with deleted entities |
static Filter<Revision> |
RevisionFilter.RELEASE_FILTER
This filter accepts all revisions with
operations belonging to
release operations (ReleaseOperation , ServerReleaseOperation , ContentOperation with released entities |
Modifier and Type | Method and Description |
---|---|
static Filter<Revision> |
RevisionFilter.createRevisionFilter(RevisionOperation.OperationType... operationTypes)
Returns a filter which accepts all revisions with a
revision operation type containing
in given operationTypes. |
Modifier and Type | Method and Description |
---|---|
List<Revision> |
HistoryProvider.RevisionProvider.getElements(Revision first,
Revision last,
int max,
Filter<Revision> filter) |
List<Revision> |
HistoryProvider.getHistory(Date before,
Date after,
int maxCount,
Filter<Revision> filter)
Returns a list of revisions of this store element in descending order.
|
Copyright © 2014 e-Spirit AG. All Rights Reserved. Build 5.0_BETA.500