0
votes
1answer
534 views
Advanced Java Generics question: why do we need to specify redundant information
Hi,
I've got some generic class for my JPA model POJO that goes like this:
public interface Identifiable<PK extends Serializable> {
PK getUniqueId();
}
public int …
1
vote
Using generic parameters with static compareObject method
Here's what you are looking for:
public static <T extends Comparable<T>> int compareObject(T o1, T o2) {
if ((o1 instanceof String) && (o2 instanceof String))
…
