See: Description
| Interface | Description |
|---|---|
| Converter<K,V,C> |
Converter that can be used to transform a given entry to a different value.
|
| KeyFilter<K> |
A filter for keys.
|
| KeyValueFilter<K,V> |
A filter for keys with their values.
|
| KeyValueFilterConverter<K,V,C> |
This interface is an optimization that can be used when a filter and converter are most efficiently used as the same
object composing the filtering and conversion in the same method invocation.
|
| KeyValueFilterConverterFactory<K,V,C> |
Factory for
KeyValueFilterConverter instances |
| ParamKeyValueFilterConverterFactory<K,V,C> |
Factory for
KeyValueFilterConverter instances supporting
parameters. |
| Class | Description |
|---|---|
| AbstractKeyValueFilterConverter<K,V,C> |
This is a base class that should be used when implementing a KeyValueFilterConverter that provides default
implementations for the
KeyValueFilter.accept(Object, Object, org.infinispan.metadata.Metadata)
and Converter.convert(Object, Object, org.infinispan.metadata.Metadata) methods so they just call the
KeyValueFilterConverter.filterAndConvert(Object, Object, org.infinispan.metadata.Metadata)
method and then do the right thing. |
| AcceptAllKeyValueFilter |
A key value filter that accepts all entries found.
|
| AcceptAllKeyValueFilter.Externalizer | |
| CacheFilters |
Static factory class that contains utility methods that can be used for performing proper transformations from
KeyValueFilter, Converter & KeyValueFilterConverter to appropraite distributed stream
instances. |
| CacheFilters.CacheFiltersExternalizer | |
| CollectionKeyFilter<K> |
Filter based on accepting/rejecting the keys that are present in a supplied collection.
|
| CollectionKeyFilter.Externalizer | |
| CompositeKeyFilter<K> |
Allows AND-composing several filters.
|
| CompositeKeyFilter.Externalizer | |
| CompositeKeyValueFilter<K,V> |
Allows AND-composing several key/value filters.
|
| CompositeKeyValueFilter.Externalizer | |
| KeyFilterAsKeyValueFilter<K,V> |
KeyValueFilter that implements it's filtering solely on the use of the provided KeyFilter
|
| KeyFilterAsKeyValueFilter.Externalizer | |
| KeyValueFilterAsKeyFilter<K> |
This is a KeyFilter that utilizes the given
KeyValueFilter to determine if to
filter the key. |
| KeyValueFilterAsKeyFilter.Externalizer | |
| NullValueConverter |
Converter that returns null for the value.
|
| NullValueConverter.Externalizer |
| Annotation Type | Description |
|---|---|
| NamedFactory |
Copyright © 2017 JBoss, a division of Red Hat. All rights reserved.