@@ -92,7 +92,7 @@ public interface ResultCursor extends RecordAccessor, Resource
92
92
93
93
/**
94
94
* Return the first record in the stream. Fail with an exception if the stream is empty
95
- * or if this cursor has already been used to move "into" the stream .
95
+ * or if this cursor has already been used to move past the first record .
96
96
*
97
97
* @return the first record in the stream
98
98
* @throws NoSuchRecordException if there is no first record or the cursor has been used already
@@ -102,7 +102,7 @@ public interface ResultCursor extends RecordAccessor, Resource
102
102
103
103
/**
104
104
* Return a field value from the first record in the stream. Fail with an exception if the stream is empty
105
- * or if this cursor has already been used to move "into" the stream .
105
+ * or if this cursor has already been used to move past the first record .
106
106
*
107
107
* @param fieldName the name of the field to return from the first record in the stream
108
108
* @return the specified field from the first record in the stream
@@ -113,7 +113,7 @@ public interface ResultCursor extends RecordAccessor, Resource
113
113
114
114
/**
115
115
* Return a field value from the first record in the stream. Fail with an exception if the stream is empty
116
- * or if this cursor has already been used to move "into" the stream .
116
+ * or if this cursor has already been used to move past the first record .
117
117
*
118
118
* @param index the index of the field to return from the first record in the stream
119
119
* @return the specified field from the first record in the stream
@@ -124,7 +124,7 @@ public interface ResultCursor extends RecordAccessor, Resource
124
124
125
125
/**
126
126
* Move to the first record and return an immutable copy of it, failing if there is not exactly
127
- * one record in the stream, or if this cursor has already been used to move "into" the stream .
127
+ * one record in the stream, or if this cursor has already been used to move past the first record .
128
128
*
129
129
* @return the first and only record in the stream
130
130
* @throws NoSuchRecordException if there is not exactly one record in the stream, or if the cursor has been used already
@@ -133,7 +133,7 @@ public interface ResultCursor extends RecordAccessor, Resource
133
133
134
134
/**
135
135
* Move to the first record and return a field value from it, failing if there is not exactly
136
- * one record in the stream, or if this cursor has already been used to move "into" the stream .
136
+ * one record in the stream, or if this cursor has already been used to move past the first record .
137
137
*
138
138
* @param fieldName the name of the field to return from the first and only record in the stream
139
139
* @return the value of the specified field of the first and only record in the stream
@@ -143,7 +143,7 @@ public interface ResultCursor extends RecordAccessor, Resource
143
143
144
144
/**
145
145
* Move to the first record and return a field value from it, failing if there is not exactly
146
- * one record in the stream, or if this cursor has already been used to move "into" the stream .
146
+ * one record in the stream, or if this cursor has already been used to move past the first record .
147
147
*
148
148
* @param index the index of the field to return from the first and only record in the stream
149
149
* @return the value of the specified field of the first and only record in the stream
0 commit comments