@@ -114,28 +114,27 @@ interface TransactionCallable<T> {
114
114
Entity get (Key key , ReadOption ... options );
115
115
116
116
/**
117
- * Returns an {@link Entity} for each given {@link Key} that exists in the Datastore.
118
- * The order of the result is unspecified.
119
- * Results are loaded lazily, so it is possible to get a {@code DatastoreException}
120
- * from the returned {@code Iterator}'s {@link Iterator#hasNext hasNext} or
121
- * {@link Iterator#next next} methods. {@link ReadOption}s can be specified if desired.
117
+ * Returns an {@link Entity} for each given {@link Key} that exists in the Datastore. The order of
118
+ * the result is unspecified. Results are loaded lazily, so it is possible to get a
119
+ * {@code DatastoreException} from the returned {@code Iterator}'s
120
+ * {@link Iterator#hasNext hasNext} or {@link Iterator#next next} methods. {@link ReadOption}s can
121
+ * be specified if desired.
122
122
*
123
123
* @throws DatastoreException upon failure
124
124
* @see #get(Key)
125
125
*/
126
126
Iterator <Entity > get (Iterable <Key > keys , ReadOption ... options );
127
127
128
128
/**
129
- * Returns a list with a value for each given key (ordered by input).
130
- * {@code null} values are returned for nonexistent keys.
131
- * When possible prefer using {@link #get(Key...)} to avoid eagerly loading the results.
132
- * {@link ReadOption}s can be specified if desired.
129
+ * Returns a list with a value for each given key (ordered by input). {@code null} values are
130
+ * returned for nonexistent keys. When possible prefer using {@link #get(Key...)} to avoid eagerly
131
+ * loading the results. {@link ReadOption}s can be specified if desired.
133
132
*/
134
133
List <Entity > fetch (Iterable <Key > keys , ReadOption ... options );
135
134
136
135
/**
137
- * Submits a {@link Query} and returns its result.
138
- * {@link ReadOption}s can be specified if desired.
136
+ * Submits a {@link Query} and returns its result. {@link ReadOption}s can be specified if
137
+ * desired.
139
138
*
140
139
* @throws DatastoreException upon failure
141
140
*/
0 commit comments