Package | Description |
---|---|
org.infinispan |
This is the core of Infinispan, a distributed, transactional, highly scalable data grid
platform.
|
org.infinispan.cache.impl | |
org.infinispan.commands |
Commands that operate on the cache, either locally or remotely.
|
org.infinispan.commands.control | |
org.infinispan.commands.functional | |
org.infinispan.commands.read | |
org.infinispan.commands.remote |
Meta-commands that wrap other commands for remote execution.
|
org.infinispan.commands.write |
Commands that alter the state of the cache.
|
org.infinispan.compat | |
org.infinispan.context |
Contexts contain information of a specific invocation on the cache, such as its origins, scope
(transactional or non-transactional), as well as invocation-specific flags.
|
org.infinispan.interceptors |
Infinispan is designed around a set of interceptors around a data container.
|
org.infinispan.interceptors.compat | |
org.infinispan.interceptors.distribution | |
org.infinispan.interceptors.locking | |
org.infinispan.interceptors.totalorder | |
org.infinispan.iteration.impl |
Provides Infinispan-specific implementation details iterating over entries in the cache, specifically optimized for
distributed caches.
|
org.infinispan.security.impl | |
org.infinispan.statetransfer |
Transfer of state to new caches in a cluster.
|
org.infinispan.transaction.impl | |
org.infinispan.tree |
This package contains the TreeCache.
|
org.infinispan.tree.impl |
Modifier and Type | Method and Description |
---|---|
AdvancedCache<K,V> |
AdvancedCache.withFlags(Flag... flags)
A method that adds flags to any API call.
|
Modifier and Type | Method and Description |
---|---|
EnumSet<Flag> |
DecoratedCache.getFlags() |
Modifier and Type | Method and Description |
---|---|
AdvancedCache<K,V> |
AbstractDelegatingAdvancedCache.withFlags(Flag... flags) |
AdvancedCache<K,V> |
CacheImpl.withFlags(Flag... flags) |
AdvancedCache<K,V> |
SimpleCacheImpl.withFlags(Flag... flags) |
AdvancedCache<K,V> |
StatsCollectingCache.withFlags(Flag... flags) |
AdvancedCache<K,V> |
DecoratedCache.withFlags(Flag... flags) |
Modifier and Type | Method and Description |
---|---|
protected EntryIterable<K,V> |
CacheImpl.filterEntries(KeyValueFilter<? super K,? super V> filter,
EnumSet<Flag> explicitFlags,
ClassLoader explicitClassLoader) |
Map<K,V> |
CacheImpl.getAll(Set<?> keys,
EnumSet<Flag> explicitFlags,
ClassLoader explicitClassLoader) |
Map<K,CacheEntry<K,V>> |
CacheImpl.getAllCacheEntries(Set<?> keys,
EnumSet<Flag> explicitFlags,
ClassLoader explicitClassLoader) |
CacheEntry |
CacheImpl.getCacheEntry(Object key,
EnumSet<Flag> explicitFlags,
ClassLoader explicitClassLoader) |
protected Map<K,V> |
CacheImpl.getGroup(String groupName,
EnumSet<Flag> explicitFlags,
ClassLoader explicitClassLoader) |
protected void |
AbstractDelegatingAdvancedCache.putForExternalRead(K key,
V value,
EnumSet<Flag> flags,
ClassLoader classLoader) |
protected void |
AbstractDelegatingAdvancedCache.putForExternalRead(K key,
V value,
Metadata metadata,
EnumSet<Flag> flags,
ClassLoader classLoader) |
protected void |
CacheImpl.removeGroup(String groupName,
EnumSet<Flag> explicitFlags,
ClassLoader explicitClassLoader) |
Constructor and Description |
---|
DecoratedCache(AdvancedCache<K,V> delegate,
ClassLoader classLoader,
Flag... flags) |
DecoratedCache(AdvancedCache<K,V> delegate,
Flag... flags) |
Modifier and Type | Field and Description |
---|---|
protected Set<Flag> |
AbstractLocalFlagAffectedCommand.flags |
Modifier and Type | Method and Description |
---|---|
Set<Flag> |
AbstractLocalFlagAffectedCommand.getFlags() |
Set<Flag> |
LocalFlagAffectedCommand.getFlags() |
Modifier and Type | Method and Description |
---|---|
default void |
LocalFlagAffectedCommand.addFlag(Flag flag)
Add a single flag to the command.
|
default boolean |
LocalFlagAffectedCommand.hasFlag(Flag flag)
Check whether a particular flag is present in the command
|
default void |
LocalFlagAffectedCommand.setFlags(Flag... newFlags)
Deprecated.
Use either
LocalFlagAffectedCommand.addFlag(Flag) or LocalFlagAffectedCommand.addFlags(Set) instead. |
Modifier and Type | Method and Description |
---|---|
default void |
LocalFlagAffectedCommand.addFlags(Set<Flag> flags)
Add a set of flags to the command.
|
ClearCommand |
CommandsFactory.buildClearCommand(Set<Flag> flags)
Builds a ClearCommand
|
ClearCommand |
CommandsFactoryImpl.buildClearCommand(Set<Flag> flags) |
ClusteredGetAllCommand |
CommandsFactory.buildClusteredGetAllCommand(List<?> keys,
Set<Flag> flags,
GlobalTransaction gtx)
Builds a ClusteredGetAllCommand, which is a remote lookup command
|
ClusteredGetAllCommand |
CommandsFactoryImpl.buildClusteredGetAllCommand(List<?> keys,
Set<Flag> flags,
GlobalTransaction gtx) |
ClusteredGetCommand |
CommandsFactory.buildClusteredGetCommand(Object key,
Set<Flag> flags,
boolean acquireRemoteLock,
GlobalTransaction gtx)
Builds a ClusteredGetCommand, which is a remote lookup command
|
ClusteredGetCommand |
CommandsFactoryImpl.buildClusteredGetCommand(Object key,
Set<Flag> flags,
boolean acquireRemoteLock,
GlobalTransaction gtx) |
<K,V,C> EntryRequestCommand<K,V,C> |
CommandsFactory.buildEntryRequestCommand(UUID identifier,
Set<Integer> segments,
Set<K> keysToFilter,
KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,C> converter,
Set<Flag> flags)
Builds
EntryRequestCommand used to request entries from a remote node for
given segments |
<K,V,C> EntryRequestCommand<K,V,C> |
CommandsFactoryImpl.buildEntryRequestCommand(UUID identifier,
Set<Integer> segments,
Set<K> keysToFilter,
KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,C> converter,
Set<Flag> flags) |
EntrySetCommand |
CommandsFactory.buildEntrySetCommand(Set<Flag> flags)
Builds a EntrySetCommand
|
EntrySetCommand |
CommandsFactoryImpl.buildEntrySetCommand(Set<Flag> flags) |
EvictCommand |
CommandsFactory.buildEvictCommand(Object key,
Set<Flag> flags)
Builds an EvictCommand
|
EvictCommand |
CommandsFactoryImpl.buildEvictCommand(Object key,
Set<Flag> flags) |
GetAllCommand |
CommandsFactory.buildGetAllCommand(Collection<?> keys,
Set<Flag> flags,
boolean returnEntries)
Builds a GetAllCommand
|
GetAllCommand |
CommandsFactoryImpl.buildGetAllCommand(Collection<?> keys,
Set<Flag> flags,
boolean returnEntries) |
GetCacheEntryCommand |
CommandsFactory.buildGetCacheEntryCommand(Object key,
Set<Flag> explicitFlags)
Builds a GetCacheEntryCommand
|
GetCacheEntryCommand |
CommandsFactoryImpl.buildGetCacheEntryCommand(Object key,
Set<Flag> explicitFlags) |
GetKeysInGroupCommand |
CommandsFactory.buildGetKeysInGroupCommand(Set<Flag> flags,
String groupName)
Builds
GetKeysInGroupCommand used to fetch all the keys belonging to a group. |
GetKeysInGroupCommand |
CommandsFactoryImpl.buildGetKeysInGroupCommand(Set<Flag> flags,
String groupName) |
GetKeyValueCommand |
CommandsFactory.buildGetKeyValueCommand(Object key,
Set<Flag> flags)
Builds a GetKeyValueCommand
|
GetKeyValueCommand |
CommandsFactoryImpl.buildGetKeyValueCommand(Object key,
Set<Flag> flags) |
InvalidateCommand |
CommandsFactory.buildInvalidateCommand(Set<Flag> flags,
Object... keys)
Builds an InvalidateCommand
|
InvalidateCommand |
CommandsFactoryImpl.buildInvalidateCommand(Set<Flag> flags,
Object... keys) |
InvalidateCommand |
CommandsFactory.buildInvalidateFromL1Command(Address origin,
Set<Flag> flags,
Collection<Object> keys) |
InvalidateCommand |
CommandsFactoryImpl.buildInvalidateFromL1Command(Address origin,
Set<Flag> flags,
Collection<Object> keys) |
InvalidateCommand |
CommandsFactory.buildInvalidateFromL1Command(Set<Flag> flags,
Collection<Object> keys)
Builds an InvalidateFromL1Command
|
InvalidateCommand |
CommandsFactoryImpl.buildInvalidateFromL1Command(Set<Flag> flags,
Collection<Object> keys) |
KeySetCommand |
CommandsFactory.buildKeySetCommand(Set<Flag> flags)
Builds a KeySetCommand
|
KeySetCommand |
CommandsFactoryImpl.buildKeySetCommand(Set<Flag> flags) |
LockControlCommand |
CommandsFactory.buildLockControlCommand(Collection<?> keys,
Set<Flag> flags) |
LockControlCommand |
CommandsFactoryImpl.buildLockControlCommand(Collection<?> keys,
Set<Flag> flags) |
LockControlCommand |
CommandsFactory.buildLockControlCommand(Collection<?> keys,
Set<Flag> flags,
GlobalTransaction gtx)
Builds a LockControlCommand to control explicit remote locking
|
LockControlCommand |
CommandsFactoryImpl.buildLockControlCommand(Collection<?> keys,
Set<Flag> flags,
GlobalTransaction gtx) |
LockControlCommand |
CommandsFactory.buildLockControlCommand(Object key,
Set<Flag> flags,
GlobalTransaction gtx)
Same as
CommandsFactory.buildLockControlCommand(Object, java.util.Set, org.infinispan.transaction.xa.GlobalTransaction)
but for locking a single key vs a collection of keys. |
LockControlCommand |
CommandsFactoryImpl.buildLockControlCommand(Object key,
Set<Flag> flags,
GlobalTransaction gtx) |
PutKeyValueCommand |
CommandsFactory.buildPutKeyValueCommand(Object key,
Object value,
Metadata metadata,
Set<Flag> flags)
Builds a PutKeyValueCommand
|
PutKeyValueCommand |
CommandsFactoryImpl.buildPutKeyValueCommand(Object key,
Object value,
Metadata metadata,
Set<Flag> flags) |
PutMapCommand |
CommandsFactory.buildPutMapCommand(Map<?,?> map,
Metadata metadata,
Set<Flag> flags)
Builds a PutMapCommand
|
PutMapCommand |
CommandsFactoryImpl.buildPutMapCommand(Map<?,?> map,
Metadata metadata,
Set<Flag> flags) |
RemoveCommand |
CommandsFactory.buildRemoveCommand(Object key,
Object value,
Set<Flag> flags)
Builds a RemoveCommand
|
RemoveCommand |
CommandsFactoryImpl.buildRemoveCommand(Object key,
Object value,
Set<Flag> flags) |
ReplaceCommand |
CommandsFactory.buildReplaceCommand(Object key,
Object oldValue,
Object newValue,
Metadata metadata,
Set<Flag> flags)
Builds a ReplaceCommand
|
ReplaceCommand |
CommandsFactoryImpl.buildReplaceCommand(Object key,
Object oldValue,
Object newValue,
Metadata metadata,
Set<Flag> flags) |
SizeCommand |
CommandsFactory.buildSizeCommand(Set<Flag> flags)
Builds a SizeCommand
|
SizeCommand |
CommandsFactoryImpl.buildSizeCommand(Set<Flag> flags) |
void |
AbstractLocalFlagAffectedCommand.setFlags(Set<Flag> flags) |
void |
LocalFlagAffectedCommand.setFlags(Set<Flag> flags)
Set the flags, replacing any existing flags.
|
Modifier and Type | Method and Description |
---|---|
Set<Flag> |
LockControlCommand.getFlags() |
Modifier and Type | Method and Description |
---|---|
void |
LockControlCommand.setFlags(Set<Flag> flags) |
Constructor and Description |
---|
LockControlCommand(Collection<?> keys,
String cacheName,
Set<Flag> flags,
GlobalTransaction gtx) |
LockControlCommand(Object key,
String cacheName,
Set<Flag> flags,
GlobalTransaction gtx) |
Modifier and Type | Method and Description |
---|---|
Set<Flag> |
AbstractWriteManyCommand.getFlags() |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractWriteManyCommand.hasFlag(Flag flag) |
void |
AbstractWriteManyCommand.setFlags(Flag... flags) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractWriteManyCommand.setFlags(Set<Flag> flags) |
Constructor and Description |
---|
AbstractDataCommand(Object key,
Set<Flag> flags) |
EntrySetCommand(Cache<K,V> cache,
Set<Flag> flags) |
GetAllCommand(Collection<?> keys,
Set<Flag> flags,
boolean returnEntries,
InternalEntryFactory entryFactory) |
GetCacheEntryCommand(Object key,
Set<Flag> flags,
InternalEntryFactory entryFactory) |
GetKeyValueCommand(Object key,
Set<Flag> flags) |
KeySetCommand(Cache<K,V> cache,
Set<Flag> flags) |
SizeCommand(Cache<Object,?> cache,
Set<Flag> flags) |
Modifier and Type | Field and Description |
---|---|
protected Set<Flag> |
LocalFlagAffectedRpcCommand.flags |
Modifier and Type | Method and Description |
---|---|
Set<Flag> |
LocalFlagAffectedRpcCommand.getFlags() |
Modifier and Type | Method and Description |
---|---|
boolean |
LocalFlagAffectedRpcCommand.hasFlag(Flag flag) |
Modifier and Type | Method and Description |
---|---|
void |
LocalFlagAffectedRpcCommand.setFlags(Set<Flag> flags) |
Constructor and Description |
---|
ClusteredGetAllCommand(String cacheName,
List<?> keys,
Set<Flag> flags,
GlobalTransaction gtx,
Equivalence<? super K> keyEquivalence) |
ClusteredGetCommand(Object key,
String cacheName,
Set<Flag> flags,
boolean acquireRemoteLock,
GlobalTransaction gtx,
Equivalence keyEquivalence) |
GetKeysInGroupCommand(Set<Flag> flags,
String groupName) |
LocalFlagAffectedRpcCommand(String cacheName,
Set<Flag> flags) |
Modifier and Type | Method and Description |
---|---|
Set<Flag> |
RemoveExpiredCommand.getFlags() |
Modifier and Type | Method and Description |
---|---|
boolean |
RemoveExpiredCommand.hasFlag(Flag flag) |
Modifier and Type | Method and Description |
---|---|
boolean |
TypeConverter.supportsInvocation(Flag flag)
Indicates whether this type converter supports a particular type of
operation.
|
Modifier and Type | Method and Description |
---|---|
Flag |
Flag.Externalizer.readObject(ObjectInput input) |
static Flag |
Flag.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Flag[] |
Flag.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Set<Flag> |
Flag.addFlag(Set<Flag> flags,
Flag newFlag) |
static Set<Flag> |
Flag.addFlags(Set<Flag> flags,
Flag... newFlags) |
static Set<Flag> |
Flag.addFlags(Set<Flag> flags,
Set<Flag> newFlags) |
static Set<Flag> |
Flag.copyWithoutRemotableFlags(Set<Flag> flags)
Creates a copy of a Flag Set removing instances of FAIL_SILENTLY.
|
Set<Class<? extends Flag>> |
Flag.Externalizer.getTypeClasses() |
Modifier and Type | Method and Description |
---|---|
static Set<Flag> |
Flag.addFlag(Set<Flag> flags,
Flag newFlag) |
static Set<Flag> |
Flag.addFlags(Set<Flag> flags,
Flag... newFlags) |
void |
Flag.Externalizer.writeObject(ObjectOutput output,
Flag flag) |
Modifier and Type | Method and Description |
---|---|
static Set<Flag> |
Flag.addFlag(Set<Flag> flags,
Flag newFlag) |
static Set<Flag> |
Flag.addFlags(Set<Flag> flags,
Flag... newFlags) |
static Set<Flag> |
Flag.addFlags(Set<Flag> flags,
Set<Flag> newFlags) |
static Set<Flag> |
Flag.addFlags(Set<Flag> flags,
Set<Flag> newFlags) |
static Set<Flag> |
Flag.copyWithoutRemotableFlags(Set<Flag> flags)
Creates a copy of a Flag Set removing instances of FAIL_SILENTLY.
|
Modifier and Type | Method and Description |
---|---|
protected void |
VersionedEntryWrappingInterceptor.commitContextEntry(CacheEntry entry,
InvocationContext ctx,
FlagAffectedCommand command,
Metadata metadata,
Flag stateTransferFlag,
boolean l1Invalidation)
Deprecated.
|
protected void |
EntryWrappingInterceptor.commitContextEntry(CacheEntry entry,
InvocationContext ctx,
FlagAffectedCommand command,
Metadata metadata,
Flag stateTransferFlag,
boolean l1Invalidation)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected TypeConverter<Object,Object,Object,Object> |
TypeConverterInterceptor.determineTypeConverter(Set<Flag> flags)
Deprecated.
|
protected abstract TypeConverter<Object,Object,Object,Object> |
BaseTypeConverterInterceptor.determineTypeConverter(Set<Flag> flags)
Deprecated.
Subclasses need to return a TypeConverter instance that is appropriate for a cache operation with the specified flags.
|
Modifier and Type | Method and Description |
---|---|
protected Map<Object,InternalCacheEntry> |
BaseDistributionInterceptor.retrieveFromRemoteSources(Set<?> requestedKeys,
InvocationContext ctx,
Set<Flag> flags)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
ClusteringDependentLogic.commitEntry(CacheEntry entry,
Metadata metadata,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
void |
ClusteringDependentLogic.AbstractClusteringDependentLogic.commitEntry(CacheEntry entry,
Metadata metadata,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
protected abstract void |
ClusteringDependentLogic.AbstractClusteringDependentLogic.commitSingleEntry(CacheEntry entry,
Metadata metadata,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
protected void |
ClusteringDependentLogic.LocalLogic.commitSingleEntry(CacheEntry entry,
Metadata metadata,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
protected void |
ClusteringDependentLogic.InvalidationLogic.commitSingleEntry(CacheEntry entry,
Metadata metadata,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
protected void |
ClusteringDependentLogic.ReplicationLogic.commitSingleEntry(CacheEntry entry,
Metadata metadata,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
protected void |
ClusteringDependentLogic.DistributionLogic.commitSingleEntry(CacheEntry entry,
Metadata metadata,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
Modifier and Type | Method and Description |
---|---|
protected void |
TotalOrderVersionedEntryWrappingInterceptor.commitContextEntry(CacheEntry entry,
InvocationContext ctx,
FlagAffectedCommand command,
Metadata metadata,
Flag stateTransferFlag,
boolean l1Invalidation)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected <C> void |
LocalEntryRetriever.registerIterator(LocalEntryRetriever.Itr<C> itr,
Set<Flag> flags) |
<C> CloseableIterator<CacheEntry<K,C>> |
EntryRetriever.retrieveEntries(KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,? extends C> converter,
Set<Flag> flags,
EntryRetriever.SegmentListener listener)
Deprecated.
This is invoked locally on the node that requested the iteration process.
|
<C> CloseableIterator<CacheEntry<K,C>> |
LocalEntryRetriever.retrieveEntries(KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,? extends C> converter,
Set<Flag> flags,
EntryRetriever.SegmentListener listener) |
<C> CloseableIterator<CacheEntry<K,C>> |
DistributedEntryRetriever.retrieveEntries(KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,? extends C> converter,
Set<Flag> flags,
EntryRetriever.SegmentListener listener) |
protected boolean |
LocalEntryRetriever.shouldUseLoader(Set<Flag> flags) |
<C> void |
EntryRetriever.startRetrievingValues(UUID identifier,
Address origin,
Set<Integer> segments,
Set<K> keysToFilter,
KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,C> converter,
Set<Flag> flagss)
Deprecated.
This method is intended to be ran remotely on a node who has segments that the values have been requested.
|
<C> void |
LocalEntryRetriever.startRetrievingValues(UUID identifier,
Address origin,
Set<Integer> segments,
Set<K> keysToFilter,
KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,C> converter,
Set<Flag> flags) |
<C> void |
DistributedEntryRetriever.startRetrievingValues(UUID identifier,
Address origin,
Set<Integer> segments,
Set<K> keysToFilter,
KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,C> converter,
Set<Flag> flags) |
Constructor and Description |
---|
EntryIterableFromStreamImpl(KeyValueFilter<? super K,? super V> filter,
EnumSet<Flag> flags,
Cache<K,V> cache) |
EntryRequestCommand(String cacheName,
UUID identifier,
Address origin,
Set<Integer> segments,
Set<K> keysToFilter,
KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,C> converter,
Set<Flag> flags) |
TrackingEntryIterableFromStream(KeyValueFilter<? super K,? super V> filter,
Converter<? super K,? super V,C> converter,
EnumSet<Flag> flags,
Cache<K,V> cache) |
Modifier and Type | Method and Description |
---|---|
AdvancedCache<K,V> |
SecureCacheImpl.withFlags(Flag... flags) |
Modifier and Type | Method and Description |
---|---|
void |
CommitManager.commit(CacheEntry entry,
Metadata metadata,
Flag operation,
boolean l1Invalidation)
It tries to commit the cache entry.
|
boolean |
CommitManager.isTracking(Flag trackFlag) |
void |
CommitManager.startTrack(Flag track)
It starts tracking keys committed.
|
void |
CommitManager.stopTrack(Flag track)
It stops tracking keys committed.
|
Modifier and Type | Method and Description |
---|---|
Flag |
AbstractCacheTransaction.getStateTransferFlag() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractCacheTransaction.internalSetStateTransferFlag(Flag stateTransferFlag) |
void |
RemoteTransaction.setStateTransferFlag(Flag stateTransferFlag) |
abstract void |
AbstractCacheTransaction.setStateTransferFlag(Flag stateTransferFlag) |
void |
LocalTransaction.setStateTransferFlag(Flag stateTransferFlag) |
Modifier and Type | Method and Description |
---|---|
Node<K,V> |
Node.addChild(Fqn f,
Flag... flags) |
void |
Node.clearData(Flag... flags) |
void |
TreeCache.clearData(Fqn fqn,
Flag... flags) |
void |
TreeCache.clearData(String fqn,
Flag... flags) |
int |
Node.dataSize(Flag... flags) |
boolean |
TreeCache.exists(Fqn fqn,
Flag... flags) |
boolean |
TreeCache.exists(String fqn,
Flag... flags) |
V |
TreeCache.get(Fqn fqn,
K key,
Flag... flags) |
V |
Node.get(K key,
Flag... flags) |
V |
TreeCache.get(String fqn,
K key,
Flag... flags) |
Node<K,V> |
Node.getChild(Fqn f,
Flag... flags) |
Node<K,V> |
Node.getChild(Object name,
Flag... flags) |
Set<Node<K,V>> |
Node.getChildren(Flag... flags) |
Set<Object> |
Node.getChildrenNames(Flag... flags) |
Map<K,V> |
Node.getData(Flag... flags) |
Map<K,V> |
TreeCache.getData(Fqn fqn,
Flag... flags) |
Set<K> |
Node.getKeys(Flag... flags) |
Set<K> |
TreeCache.getKeys(Fqn fqn,
Flag... flags) |
Set<K> |
TreeCache.getKeys(String fqn,
Flag... flags) |
Node<K,V> |
TreeCache.getNode(Fqn fqn,
Flag... flags) |
Node<K,V> |
TreeCache.getNode(String fqn,
Flag... flags) |
Node<K,V> |
Node.getParent(Flag... flags) |
Node<K,V> |
TreeCache.getRoot(Flag... flags) |
boolean |
Node.hasChild(Fqn f,
Flag... flags) |
boolean |
Node.hasChild(Object o,
Flag... flags) |
void |
TreeCache.move(Fqn nodeToMove,
Fqn newParent,
Flag... flags) |
void |
TreeCache.move(String nodeToMove,
String newParent,
Flag... flags) |
V |
TreeCache.put(Fqn fqn,
K key,
V value,
Flag... flags) |
void |
TreeCache.put(Fqn fqn,
Map<? extends K,? extends V> data,
Flag... flags) |
V |
Node.put(K key,
V value,
Flag... flags) |
V |
TreeCache.put(String fqn,
K key,
V value,
Flag... flags) |
void |
TreeCache.put(String fqn,
Map<? extends K,? extends V> data,
Flag... flags) |
void |
Node.putAll(Map<? extends K,? extends V> map,
Flag... flags) |
V |
Node.putIfAbsent(K key,
V value,
Flag... flags) |
V |
TreeCache.remove(Fqn fqn,
K key,
Flag... flags) |
V |
Node.remove(K key,
Flag... flags) |
V |
TreeCache.remove(String fqn,
K key,
Flag... flags) |
boolean |
Node.removeChild(Fqn f,
Flag... flags) |
boolean |
Node.removeChild(Object childName,
Flag... flags) |
void |
Node.removeChildren(Flag... flags) |
boolean |
TreeCache.removeNode(Fqn fqn,
Flag... flags) |
boolean |
TreeCache.removeNode(String fqn,
Flag... flags) |
V |
Node.replace(K key,
V value,
Flag... flags) |
boolean |
Node.replace(K key,
V oldValue,
V newValue,
Flag... flags) |
void |
Node.replaceAll(Map<? extends K,? extends V> map,
Flag... flags) |
Modifier and Type | Method and Description |
---|---|
Node<K,V> |
NodeImpl.addChild(Fqn f,
Flag... flags) |
void |
NodeImpl.clearData(Flag... flags) |
void |
TreeCacheImpl.clearData(Fqn fqn,
Flag... flags) |
void |
TreeCacheImpl.clearData(String fqn,
Flag... flags) |
int |
NodeImpl.dataSize(Flag... flags) |
boolean |
TreeCacheImpl.exists(Fqn fqn,
Flag... flags) |
boolean |
TreeCacheImpl.exists(String fqn,
Flag... flags) |
V |
TreeCacheImpl.get(Fqn fqn,
K key,
Flag... flags) |
V |
NodeImpl.get(K key,
Flag... flags) |
V |
TreeCacheImpl.get(String fqn,
K key,
Flag... flags) |
Node<K,V> |
NodeImpl.getChild(Fqn f,
Flag... flags) |
Node<K,V> |
NodeImpl.getChild(Object name,
Flag... flags) |
Set<Node<K,V>> |
NodeImpl.getChildren(Flag... flags) |
Set<Object> |
NodeImpl.getChildrenNames(Flag... flags) |
Map<K,V> |
NodeImpl.getData(Flag... flags) |
Map<K,V> |
TreeCacheImpl.getData(Fqn fqn,
Flag... flags) |
Set<K> |
NodeImpl.getKeys(Flag... flags) |
Set<K> |
TreeCacheImpl.getKeys(Fqn fqn,
Flag... flags) |
Set<K> |
TreeCacheImpl.getKeys(String fqn,
Flag... flags) |
Node<K,V> |
TreeCacheImpl.getNode(Fqn fqn,
Flag... flags) |
Node<K,V> |
TreeCacheImpl.getNode(String fqn,
Flag... flags) |
Node<K,V> |
NodeImpl.getParent(Flag... flags) |
Node<K,V> |
TreeCacheImpl.getRoot(Flag... flags) |
boolean |
NodeImpl.hasChild(Fqn f,
Flag... flags) |
boolean |
NodeImpl.hasChild(Object o,
Flag... flags) |
void |
TreeCacheImpl.move(Fqn nodeToMoveFqn,
Fqn newParentFqn,
Flag... flags) |
void |
TreeCacheImpl.move(String nodeToMove,
String newParent,
Flag... flags) |
V |
TreeCacheImpl.put(Fqn fqn,
K key,
V value,
Flag... flags) |
void |
TreeCacheImpl.put(Fqn fqn,
Map<? extends K,? extends V> data,
Flag... flags) |
V |
NodeImpl.put(K key,
V value,
Flag... flags) |
V |
TreeCacheImpl.put(String fqn,
K key,
V value,
Flag... flags) |
void |
TreeCacheImpl.put(String fqn,
Map<? extends K,? extends V> data,
Flag... flags) |
void |
NodeImpl.putAll(Map<? extends K,? extends V> map,
Flag... flags) |
V |
NodeImpl.putIfAbsent(K key,
V value,
Flag... flags) |
V |
TreeCacheImpl.remove(Fqn fqn,
K key,
Flag... flags) |
V |
NodeImpl.remove(K key,
Flag... flags) |
V |
TreeCacheImpl.remove(String fqn,
K key,
Flag... flags) |
boolean |
NodeImpl.removeChild(Fqn f,
Flag... flags) |
boolean |
NodeImpl.removeChild(Object childName,
Flag... flags) |
void |
NodeImpl.removeChildren(Flag... flags) |
boolean |
TreeCacheImpl.removeNode(Fqn fqn,
Flag... flags) |
boolean |
TreeCacheImpl.removeNode(String fqn,
Flag... flags) |
V |
NodeImpl.replace(K key,
V value,
Flag... flags) |
boolean |
NodeImpl.replace(K key,
V oldValue,
V newValue,
Flag... flags) |
void |
NodeImpl.replaceAll(Map<? extends K,? extends V> map,
Flag... flags) |
Copyright © 2021 JBoss, a division of Red Hat. All rights reserved.