[jOOQ/jOOQ#8817] Remove unnecessary {@inheritDoc} Javadoc tags in jOOQ's internals
This commit is contained in:
parent
d53dee0696
commit
d4a0e60bd8
@ -65,44 +65,26 @@ public interface DeleteQuery<R extends Record> extends ConditionProvider, Delete
|
||||
// Methods from ConditionProvider, OrderProvider, LockProvider
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Condition condition);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Condition... conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Collection<? extends Condition> conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Condition condition);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Condition... conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Collection<? extends Condition> conditions);
|
||||
|
||||
@ -45,21 +45,12 @@ package org.jooq;
|
||||
*/
|
||||
public interface EmbeddableRecord<R extends EmbeddableRecord<R>> extends Record {
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
R original();
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
<T> R with(Field<T> field, T value);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
<T, U> R with(Field<T> field, U value, Converter<? extends T, ? super U> converter);
|
||||
}
|
||||
|
||||
@ -764,9 +764,6 @@ public interface Name extends QueryPart {
|
||||
|
||||
// [jooq-tools] END [fields]
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
boolean equals(Object other);
|
||||
|
||||
|
||||
@ -3746,15 +3746,9 @@ extends
|
||||
*/
|
||||
Class<? extends R> getRecordType();
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
ResultQuery<R> bind(String param, Object value) throws IllegalArgumentException, DataTypeException;
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
ResultQuery<R> bind(int index, Object value) throws IllegalArgumentException, DataTypeException;
|
||||
|
||||
@ -3762,21 +3756,12 @@ extends
|
||||
// JDBC methods
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
ResultQuery<R> poolable(boolean poolable);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
ResultQuery<R> queryTimeout(int timeout);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
ResultQuery<R> keepStatement(boolean keepStatement);
|
||||
|
||||
|
||||
@ -542,44 +542,26 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
|
||||
// Methods from ConditionProvider, OrderProvider, LockProvider
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Condition condition);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Condition... conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Collection<? extends Condition> conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Condition condition);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Condition... conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Collection<? extends Condition> conditions);
|
||||
|
||||
@ -54,9 +54,6 @@ public interface TableRecord<R extends TableRecord<R>> extends Record {
|
||||
*/
|
||||
Table<R> getTable();
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
R original();
|
||||
|
||||
@ -111,15 +108,9 @@ public interface TableRecord<R extends TableRecord<R>> extends Record {
|
||||
*/
|
||||
<O extends UpdatableRecord<O>> O fetchParent(ForeignKey<R, O> key) throws DataAccessException;
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
<T> R with(Field<T> field, T value);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
<T, U> R with(Field<T> field, U value, Converter<? extends T, ? super U> converter);
|
||||
}
|
||||
|
||||
@ -52,15 +52,9 @@ public interface UDTRecord<R extends UDTRecord<R>> extends Record, SQLData {
|
||||
*/
|
||||
UDT<R> getUDT();
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
<T> R with(Field<T> field, T value);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
<T, U> R with(Field<T> field, U value, Converter<? extends T, ? super U> converter);
|
||||
|
||||
|
||||
@ -376,44 +376,26 @@ public interface UpdateQuery<R extends Record> extends StoreQuery<R>, ConditionP
|
||||
// XXX: Methods from ConditionProvider
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Condition condition);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Condition... conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Collection<? extends Condition> conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Condition condition);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Condition... conditions);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Support
|
||||
void addConditions(Operator operator, Collection<? extends Condition> conditions);
|
||||
|
||||
@ -567,17 +567,11 @@ abstract class AbstractQuery extends AbstractQueryPart implements Query {
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final String getSQL() {
|
||||
return getSQL(getParamType(Tools.settings(configuration())));
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final String getSQL(ParamType paramType) {
|
||||
switch (paramType) {
|
||||
@ -596,9 +590,6 @@ abstract class AbstractQuery extends AbstractQueryPart implements Query {
|
||||
throw new IllegalArgumentException("ParamType not supported: " + paramType);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
@Deprecated
|
||||
public final String getSQL(boolean inline) {
|
||||
|
||||
@ -85,17 +85,11 @@ public class DefaultDiagnosticsListenerProvider implements DiagnosticsListenerPr
|
||||
this.listener = listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final DiagnosticsListener provide() {
|
||||
return listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return listener.toString();
|
||||
|
||||
@ -85,17 +85,11 @@ public class DefaultExecuteListenerProvider implements ExecuteListenerProvider,
|
||||
this.listener = listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final ExecuteListener provide() {
|
||||
return listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return listener.toString();
|
||||
|
||||
@ -85,17 +85,11 @@ public class DefaultRecordListenerProvider implements RecordListenerProvider, Se
|
||||
this.listener = listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final RecordListener provide() {
|
||||
return listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return listener.toString();
|
||||
|
||||
@ -85,17 +85,11 @@ public class DefaultTransactionListenerProvider implements TransactionListenerPr
|
||||
this.listener = listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final TransactionListener provide() {
|
||||
return listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return listener.toString();
|
||||
|
||||
@ -85,17 +85,11 @@ public class DefaultVisitListenerProvider implements VisitListenerProvider, Seri
|
||||
this.listener = listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final VisitListener provide() {
|
||||
return listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return listener.toString();
|
||||
|
||||
@ -775,17 +775,11 @@ public class Reflect {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return object.hashCode();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof Reflect) {
|
||||
@ -795,9 +789,6 @@ public class Reflect {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.valueOf(object);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user