Class ResultSetIterator
 Implements Iterator returned by the iterator() method of ResultSetDynaClass. Each object returned by this iterator will be a
 DynaBean that represents a single row from the result set being wrapped.
 
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected booleanFlag indicating whether the result set is currently positioned at a row for which we have not yet returned an element in the iteration.protected ResultSetDynaClassTheResultSetDynaClasswe are associated with.protected booleanFlag indicating whether the result set has indicated that there are no further rows.
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidadvance()Advance the result set to the next row, if there is not a current row (and if we are not already at eof).booleanDoes the specified mapped property contain a value for the specified key value?Gets the value of a simple property with the specified name.Gets the value of an indexed property with the specified name.Gets the value of a mapped property with the specified name, ornullif there is no value for the specified key.Gets theDynaClassinstance that describes the set of properties available for this DynaBean.booleanhasNext()Getstrueif the iteration has more elements.next()Gets the next element in the iteration.voidremove()Remove the current element from the iteration.voidRemove any existing value for the specified key on the specified mapped property.voidSets the value of an indexed property with the specified name.voidSets the value of a simple property with the specified name.voidSets the value of a mapped property with the specified name.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.IteratorforEachRemaining
- 
Field Details- 
currentFlag indicating whether the result set is currently positioned at a row for which we have not yet returned an element in the iteration. 
- 
dynaClassThe ResultSetDynaClasswe are associated with.
- 
eofFlag indicating whether the result set has indicated that there are no further rows. 
 
- 
- 
Method Details- 
advanceAdvance the result set to the next row, if there is not a current row (and if we are not already at eof). - Throws:
- SQLException- if the result set throws an exception
 
- 
containsDoes the specified mapped property contain a value for the specified key value?- Specified by:
- containsin interface- DynaBean
- Parameters:
- name- Name of the property to check
- key- Name of the key to check
- Returns:
- trueif the mapped property contains a value for the specified key, otherwise- false
- Throws:
- IllegalArgumentException- if there is no property of the specified name
 
- 
getGets the value of a simple property with the specified name.- Specified by:
- getin interface- DynaBean
- Parameters:
- name- Name of the property whose value is to be retrieved
- Returns:
- The property's value
- Throws:
- IllegalArgumentException- if there is no property of the specified name
 
- 
getGets the value of an indexed property with the specified name.- Specified by:
- getin interface- DynaBean
- Parameters:
- name- Name of the property whose value is to be retrieved
- index- Index of the value to be retrieved
- Returns:
- The indexed property's value
- Throws:
- IllegalArgumentException- if there is no property of the specified name
- IllegalArgumentException- if the specified property exists, but is not indexed
- IndexOutOfBoundsException- if the specified index is outside the range of the underlying property
- NullPointerException- if no array or List has been initialized for this property
 
- 
getGets the value of a mapped property with the specified name, ornullif there is no value for the specified key.- Specified by:
- getin interface- DynaBean
- Parameters:
- name- Name of the property whose value is to be retrieved
- key- Key of the value to be retrieved
- Returns:
- The mapped property's value
- Throws:
- IllegalArgumentException- if there is no property of the specified name
- IllegalArgumentException- if the specified property exists, but is not mapped
 
- 
getDynaClassGets theDynaClassinstance that describes the set of properties available for this DynaBean.- Specified by:
- getDynaClassin interface- DynaBean
- Returns:
- The associated DynaClass
 
- 
hasNextGets trueif the iteration has more elements.
- 
nextGets the next element in the iteration. 
- 
removeRemove the current element from the iteration. This method is not supported. 
- 
removeRemove any existing value for the specified key on the specified mapped property.- Specified by:
- removein interface- DynaBean
- Parameters:
- name- Name of the property for which a value is to be removed
- key- Key of the value to be removed
- Throws:
- IllegalArgumentException- if there is no property of the specified name
 
- 
setSets the value of an indexed property with the specified name.- Specified by:
- setin interface- DynaBean
- Parameters:
- name- Name of the property whose value is to be set
- index- Index of the property to be set
- value- Value to which this property is to be set
- Throws:
- ConversionException- if the specified value cannot be converted to the type required for this property
- IllegalArgumentException- if there is no property of the specified name
- IllegalArgumentException- if the specified property exists, but is not indexed
- IndexOutOfBoundsException- if the specified index is outside the range of the underlying property
 
- 
setSets the value of a simple property with the specified name.- Specified by:
- setin interface- DynaBean
- Parameters:
- name- Name of the property whose value is to be set
- value- Value to which this property is to be set
- Throws:
- ConversionException- if the specified value cannot be converted to the type required for this property
- IllegalArgumentException- if there is no property of the specified name
- NullPointerException- if an attempt is made to set a primitive property to null
 
- 
setSets the value of a mapped property with the specified name.- Specified by:
- setin interface- DynaBean
- Parameters:
- name- Name of the property whose value is to be set
- key- Key of the property to be set
- value- Value to which this property is to be set
- Throws:
- ConversionException- if the specified value cannot be converted to the type required for this property
- IllegalArgumentException- if there is no property of the specified name
- IllegalArgumentException- if the specified property exists, but is not mapped
 
 
-