ComparisonStyle Enumeration |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Comparison style enum.
Namespace:
Tangosol.Util.Comparator
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic enum ComparisonStyle
Members
| Member name | Value | Description |
---|
| Auto | 0 |
Indicates that this EntryComparer should choose the comparison
style based on the underying comparer type.
|
| Value | 1 |
Indicates that this EntryComparer should compare the entries'
values.
|
| Key | 2 |
Indicates that this EntryComparer should compare the entries'
keys.
|
| Entry | 3 |
Indicates that entries that implement
IQueryCacheEntry interface will be compared
using the CompareEntries(IQueryCacheEntry, IQueryCacheEntry)
method.
|
See Also