Click or drag to resize

ConverterCollectionsGetCacheEnumerator Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Returns an instance of ICacheEnumerator that uses IConverters to view an underlying enumerator.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static ICacheEnumerator GetCacheEnumerator(
	ICacheEnumerator enumerator,
	IConverter convKeyUp,
	IConverter convValUp,
	IConverter convValDown
)

Parameters

enumerator
Type: Tangosol.Net.CacheICacheEnumerator
The underlying ICacheEnumerator.
convKeyUp
Type: Tangosol.UtilIConverter
The IConverter to view the underlying ICacheEnumerator keys through.
convValUp
Type: Tangosol.UtilIConverter
The IConverter to view the underlying ICacheEnumerator values through.
convValDown
Type: Tangosol.UtilIConverter
The IConverter to change the underlying ICacheEnumerator values through.

Return Value

Type: ICacheEnumerator
An ICacheEnumerator that views the passed enumerator through the specified IConverters.
See Also