diff --git a/jOOQ/src/main/java/org/jooq/ResultQuery.java b/jOOQ/src/main/java/org/jooq/ResultQuery.java index 953b8da1df..b8c9b971e5 100644 --- a/jOOQ/src/main/java/org/jooq/ResultQuery.java +++ b/jOOQ/src/main/java/org/jooq/ResultQuery.java @@ -734,7 +734,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ T fetchSingle(Field field) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -748,7 +748,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ T fetchSingle(Field field, Class type) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -762,7 +762,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ U fetchSingle(Field field, Converter converter) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -776,7 +776,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ Object fetchSingle(int fieldIndex) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -790,7 +790,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ T fetchSingle(int fieldIndex, Class type) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -804,7 +804,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ U fetchSingle(int fieldIndex, Converter converter) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -818,7 +818,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ Object fetchSingle(String fieldName) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -832,7 +832,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ T fetchSingle(String fieldName, Class type) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -846,7 +846,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ U fetchSingle(String fieldName, Converter converter) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -860,7 +860,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ Object fetchSingle(Name fieldName) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -874,7 +874,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ T fetchSingle(Name fieldName, Class type) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -888,7 +888,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ U fetchSingle(Name fieldName, Converter converter) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -902,7 +902,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ R fetchSingle() throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -913,7 +913,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ E fetchSingle(RecordMapper mapper) throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -924,7 +924,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record * @see Result#intoMaps() * @see Record#intoMap() @@ -939,7 +939,7 @@ public interface ResultQuery extends Query, Iterable { * * @return The resulting value. This is never null. * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ Object[] fetchSingleArray() throws DataAccessException, NoDataFoundException, TooManyRowsException; @@ -963,7 +963,7 @@ public interface ResultQuery extends Query, Iterable { * @throws DataAccessException if something went wrong executing the query * @throws MappingException wrapping any reflection or data type conversion * exception that might have occurred while mapping records - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record * @see DefaultRecordMapper */ @@ -990,7 +990,7 @@ public interface ResultQuery extends Query, Iterable { * @see Record#into(Table) * @see Result#into(Table) * @throws DataAccessException if something went wrong executing the query - * @thorws NoDataFoundException if the query returned no records + * @throws NoDataFoundException if the query returned no records * @throws TooManyRowsException if the query returned more than one record */ Z fetchSingleInto(Table table) throws DataAccessException, NoDataFoundException, TooManyRowsException;