ComparisonStyle Enumeration |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Comparison style enum.
Namespace:
Tangosol.Util.Comparator
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
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