The following document contains the results of PMD's CPD 5.0.2.
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/QuerySelect.java | rxjava-jdbc | 315 |
| com/github/davidmoten/rx/jdbc/QueryUpdate.java | rxjava-jdbc | 432 |
public <S> Observable<TupleN<Object>> getTupleN() {
return get(Tuples.tupleN(Object.class));
}
/**
* Automaps the columns of the {@link ResultSet} into the specified
* classes. See {@link #autoMap(Class) autoMap()}.
*
* @param cls1
* @param cls2
* @return
*/
public <T1, T2> Observable<Tuple2<T1, T2>> getAs(Class<T1> cls1, Class<T2> cls2) {
return get(Tuples.tuple(cls1, cls2));
}
/**
* Automaps the columns of the {@link ResultSet} into the specified
* classes. See {@link #autoMap(Class) autoMap()}.
*
* @param cls1
* @param cls2
* @param cls3
* @return
*/
public <T1, T2, T3> Observable<Tuple3<T1, T2, T3>> getAs(Class<T1> cls1, Class<T2> cls2,
Class<T3> cls3) {
return get(Tuples.tuple(cls1, cls2, cls3));
}
/**
* Automaps the columns of the {@link ResultSet} into the specified
* classes. See {@link #autoMap(Class) autoMap()}.
*
* @param cls1
* @param cls2
* @param cls3
* @param cls4
* @return
*/
public <T1, T2, T3, T4> Observable<Tuple4<T1, T2, T3, T4>> getAs(Class<T1> cls1,
Class<T2> cls2, Class<T3> cls3, Class<T4> cls4) {
return get(Tuples.tuple(cls1, cls2, cls3, cls4));
}
/**
* Automaps the columns of the {@link ResultSet} into the specified
* classes. See {@link #autoMap(Class) autoMap()}.
*
* @param cls1
* @param cls2
* @param cls3
* @param cls4
* @param cls5
* @return
*/
public <T1, T2, T3, T4, T5> Observable<Tuple5<T1, T2, T3, T4, T5>> getAs(Class<T1> cls1,
Class<T2> cls2, Class<T3> cls3, Class<T4> cls4, Class<T5> cls5) {
return get(Tuples.tuple(cls1, cls2, cls3, cls4, cls5));
}
/**
* Automaps the columns of the {@link ResultSet} into the specified
* classes. See {@link #autoMap(Class) autoMap()}.
*
* @param cls1
* @param cls2
* @param cls3
* @param cls4
* @param cls5
* @param cls6
* @return
*/
public <T1, T2, T3, T4, T5, T6> Observable<Tuple6<T1, T2, T3, T4, T5, T6>> getAs(
Class<T1> cls1, Class<T2> cls2, Class<T3> cls3, Class<T4> cls4, Class<T5> cls5,
Class<T6> cls6) {
return get(Tuples.tuple(cls1, cls2, cls3, cls4, cls5, cls6));
}
/**
* Automaps the columns of the {@link ResultSet} into the specified
* classes. See {@link #autoMap(Class) autoMap()}.
*
* @param cls1
* @param cls2
* @param cls3
* @param cls4
* @param cls5
* @param cls6
* @param cls7
* @return
*/
public <T1, T2, T3, T4, T5, T6, T7> Observable<Tuple7<T1, T2, T3, T4, T5, T6, T7>> getAs(
Class<T1> cls1, Class<T2> cls2, Class<T3> cls3, Class<T4> cls4, Class<T5> cls5,
Class<T6> cls6, Class<T7> cls7) {
return get(Tuples.tuple(cls1, cls2, cls3, cls4, cls5, cls6, cls7));
}
public Observable<Integer> count() {
return get(Util.toOne()).count();
} | ||
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/tuple/Tuple6.java | rxjava-jdbc | 86 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple7.java | rxjava-jdbc | 95 |
Tuple6<?, ?, ?, ?, ?, ?> other = (Tuple6<?, ?, ?, ?, ?, ?>) obj;
if (value1 == null) {
if (other.value1 != null)
return false;
} else if (!value1.equals(other.value1))
return false;
if (value2 == null) {
if (other.value2 != null)
return false;
} else if (!value2.equals(other.value2))
return false;
if (value3 == null) {
if (other.value3 != null)
return false;
} else if (!value3.equals(other.value3))
return false;
if (value4 == null) {
if (other.value4 != null)
return false;
} else if (!value4.equals(other.value4))
return false;
if (value5 == null) {
if (other.value5 != null)
return false;
} else if (!value5.equals(other.value5))
return false;
if (value6 == null) {
if (other.value6 != null)
return false;
} else if (!value6.equals(other.value6))
return false; | ||
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/tuple/Tuple5.java | rxjava-jdbc | 77 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple6.java | rxjava-jdbc | 86 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple7.java | rxjava-jdbc | 95 |
Tuple5<?, ?, ?, ?, ?> other = (Tuple5<?, ?, ?, ?, ?>) obj;
if (value1 == null) {
if (other.value1 != null)
return false;
} else if (!value1.equals(other.value1))
return false;
if (value2 == null) {
if (other.value2 != null)
return false;
} else if (!value2.equals(other.value2))
return false;
if (value3 == null) {
if (other.value3 != null)
return false;
} else if (!value3.equals(other.value3))
return false;
if (value4 == null) {
if (other.value4 != null)
return false;
} else if (!value4.equals(other.value4))
return false;
if (value5 == null) {
if (other.value5 != null)
return false;
} else if (!value5.equals(other.value5))
return false; | ||
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/tuple/Tuple6.java | rxjava-jdbc | 63 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple7.java | rxjava-jdbc | 71 |
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((value1 == null) ? 0 : value1.hashCode());
result = prime * result + ((value2 == null) ? 0 : value2.hashCode());
result = prime * result + ((value3 == null) ? 0 : value3.hashCode());
result = prime * result + ((value4 == null) ? 0 : value4.hashCode());
result = prime * result + ((value5 == null) ? 0 : value5.hashCode());
result = prime * result + ((value6 == null) ? 0 : value6.hashCode()); | ||
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/tuple/Tuple4.java | rxjava-jdbc | 68 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple5.java | rxjava-jdbc | 77 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple6.java | rxjava-jdbc | 86 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple7.java | rxjava-jdbc | 95 |
Tuple4<?, ?, ?, ?> other = (Tuple4<?, ?, ?, ?>) obj;
if (value1 == null) {
if (other.value1 != null)
return false;
} else if (!value1.equals(other.value1))
return false;
if (value2 == null) {
if (other.value2 != null)
return false;
} else if (!value2.equals(other.value2))
return false;
if (value3 == null) {
if (other.value3 != null)
return false;
} else if (!value3.equals(other.value3))
return false;
if (value4 == null) {
if (other.value4 != null)
return false;
} else if (!value4.equals(other.value4))
return false; | ||
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/tuple/Tuple5.java | rxjava-jdbc | 55 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple6.java | rxjava-jdbc | 63 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple7.java | rxjava-jdbc | 71 |
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((value1 == null) ? 0 : value1.hashCode());
result = prime * result + ((value2 == null) ? 0 : value2.hashCode());
result = prime * result + ((value3 == null) ? 0 : value3.hashCode());
result = prime * result + ((value4 == null) ? 0 : value4.hashCode());
result = prime * result + ((value5 == null) ? 0 : value5.hashCode()); | ||
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/tuple/Tuple3.java | rxjava-jdbc | 59 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple4.java | rxjava-jdbc | 68 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple5.java | rxjava-jdbc | 77 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple6.java | rxjava-jdbc | 86 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple7.java | rxjava-jdbc | 95 |
Tuple3<?, ?, ?> other = (Tuple3<?, ?, ?>) obj;
if (value1 == null) {
if (other.value1 != null)
return false;
} else if (!value1.equals(other.value1))
return false;
if (value2 == null) {
if (other.value2 != null)
return false;
} else if (!value2.equals(other.value2))
return false;
if (value3 == null) {
if (other.value3 != null)
return false;
} else if (!value3.equals(other.value3))
return false; | ||
| File | Project | Line |
|---|---|---|
| com/github/davidmoten/rx/jdbc/tuple/Tuple4.java | rxjava-jdbc | 47 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple5.java | rxjava-jdbc | 55 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple6.java | rxjava-jdbc | 63 |
| com/github/davidmoten/rx/jdbc/tuple/Tuple7.java | rxjava-jdbc | 71 |
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((value1 == null) ? 0 : value1.hashCode());
result = prime * result + ((value2 == null) ? 0 : value2.hashCode());
result = prime * result + ((value3 == null) ? 0 : value3.hashCode());
result = prime * result + ((value4 == null) ? 0 : value4.hashCode()); | ||