Package com.google.api.client.util
Class DataMap.EntryIterator
- java.lang.Object
-
- com.google.api.client.util.DataMap.EntryIterator
-
- All Implemented Interfaces:
java.util.Iterator<java.util.Map.Entry<java.lang.String,java.lang.Object>>
- Enclosing class:
- DataMap
final class DataMap.EntryIterator extends java.lang.Object implements java.util.Iterator<java.util.Map.Entry<java.lang.String,java.lang.Object>>Iterator over the object data key/value map entries.
-
-
Field Summary
Fields Modifier and Type Field Description private FieldInfocurrentFieldInfoprivate booleanisComputedWhether the next field has been computed.private booleanisRemovedprivate FieldInfonextFieldInfoprivate java.lang.ObjectnextFieldValueprivate intnextKeyIndex
-
Constructor Summary
Constructors Constructor Description EntryIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()java.util.Map.Entry<java.lang.String,java.lang.Object>next()voidremove()
-
-
-
Field Detail
-
nextKeyIndex
private int nextKeyIndex
-
nextFieldInfo
private FieldInfo nextFieldInfo
-
nextFieldValue
private java.lang.Object nextFieldValue
-
isRemoved
private boolean isRemoved
-
isComputed
private boolean isComputed
Whether the next field has been computed.
-
currentFieldInfo
private FieldInfo currentFieldInfo
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<java.util.Map.Entry<java.lang.String,java.lang.Object>>
-
next
public java.util.Map.Entry<java.lang.String,java.lang.Object> next()
- Specified by:
nextin interfacejava.util.Iterator<java.util.Map.Entry<java.lang.String,java.lang.Object>>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<java.util.Map.Entry<java.lang.String,java.lang.Object>>
-
-