Package | Description |
---|---|
agi.foundation.infrastructure.threading |
Contains types used to perform and manage calculations among multiple threads of execution.
|
Modifier and Type | Method and Description |
---|---|
static PersistentDictionaryAddResult |
PersistentDictionaryAddResult.getDefault()
Get the enum constant that is considered to be the default.
|
static PersistentDictionaryAddResult |
PersistentDictionaryAddResult.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
static PersistentDictionaryAddResult |
PersistentDictionaryAddResult.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersistentDictionaryAddResult[] |
PersistentDictionaryAddResult.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
abstract PersistentDictionary<TKey,TValue> |
PersistentDictionary.add(TKey key,
TValue value,
PersistentDictionaryAddResult[] result)
Adds a specified key/value pair to the dictionary, and returns a value indicating
whether the key was newly added to the dictionary or it already existed and the value
was replaced.
|