Class CharArrayMap<TValue>.EntryIterator
public iterator class so efficient methods are exposed to users
Inheritance
System.Object
CharArrayMap<TValue>.EntryIterator
Implements
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String, TValue>>
System.Collections.IEnumerator
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Analysis.Util
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public class EntryIterator : IEnumerator<KeyValuePair<string, TValue>>, IEnumerator, IDisposable
Properties
| Improve this Doc View SourceCurrent
Declaration
public virtual KeyValuePair<string, TValue> Current { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.KeyValuePair<System.String, TValue> |
CurrentValue
returns the value associated with the current key
Declaration
public virtual TValue CurrentValue { get; }
Property Value
Type | Description |
---|---|
TValue |
HasNext
Declaration
public virtual bool HasNext { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
| Improve this Doc View SourceDispose()
Declaration
public void Dispose()
Dispose(Boolean)
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
MoveNext()
Declaration
public virtual bool MoveNext()
Returns
Type | Description |
---|---|
System.Boolean |
NextKey()
gets the next key... do not modify the returned char[]
Declaration
public virtual char[] NextKey()
Returns
Type | Description |
---|---|
System.Char[] |
NextKeyString()
gets the next key as a newly created System.String object
Declaration
public virtual string NextKeyString()
Returns
Type | Description |
---|---|
System.String |
Reset()
Declaration
public virtual void Reset()
SetValue(TValue)
sets the value associated with the last key returned
Declaration
public virtual TValue SetValue(TValue value)
Parameters
Type | Name | Description |
---|---|---|
TValue | value |
Returns
Type | Description |
---|---|
TValue |
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerator.Current
Declaration
object IEnumerator.Current { get; }
Returns
Type | Description |
---|---|
System.Object |
Implements
System.Collections.Generic.IEnumerator<T>
System.Collections.IEnumerator
System.IDisposable