A bounded wildcard is one with either an upper or a lower type constraint. A wildcard with an upper bound looks like `? extends Type` and stands for the family of all types that are subtypes of `Type`, type `Type `being included. `Type` is called the upper bound. A wildcard with a lower ...
0
votes
1answer
52 views
Trouble with upper bounded generics
I'm having some trouble with a class that contains a member that uses generics. Consider the following sample classes:
class BaseRequest {
// Content goes here
}
class SubRequest extends ...
1
vote
3answers
51 views
java generic ambiguity
If there is a generic type node<E> with two operations like setData(E Type) and E getData() and let s0 be a instance of node by node<? extends Number> then why don't the compiler allow me ...
4
votes
4answers
220 views
Generic 0 cannot be cast to java.lang.Short
I have two maps in my class (I am new to generics)
private Map<Integer, Integer> aMap = new ConcurrentHashMap<Integer, Integer>();
private Map<Integer, Short> bMap = new ...
0
votes
3answers
59 views
Difference between using `? super` in parameter and variable
I thought I'd figured out generics with super. But I must be completely wrong:
With this simple example:
class Animal{}
class Dog extends Animal{}
This code works fine because we are passing in a ...
0
votes
1answer
52 views
Java: not operator for wildcard bounds
After doing some reading, it appears that it is possible to use the & operator to require multiple extends: Class<T extends Class1 & Class2> classObj;
However, I'm looking for a way to ...
8
votes
2answers
187 views
In guava, why is just “T” used where “? super T” would be possible?
Why do the utility factory methods often use a specific generic parameter (like T) instead of a bounded wildcard parameter (like ? super T)?
For instance, the signature of Functions#forPredicate is:
...
0
votes
3answers
102 views
Java: Help me understand: How to use interface methods on a bounded wildcard field?
I'm having trouble understanding why I can use bounded wildcards like this, if I can't (seem to) make any (genericly-typed) use of it.
If I have a wildcard field in a class, I can't use any of the ...
5
votes
2answers
120 views
.NET equivalent for Java bounded wildcard (IInterf<?>)?
I'm stuck trying to translate some Java code that uses (bounded) wildcard generics to C#. My problem is, Java seems to allow a generic type to be both covariant and contravariant when used with a ...
2
votes
1answer
126 views
.NET equivalent for Java wildcard generics <?> with co- and contra- variance?
I'm stuck trying to translate some Java code that uses (bounded) wildcard generics to C#.
My problem is, Java seems to allow a generic type to be both covariant and contravariant when used with a ...
2
votes
2answers
30 views
How does the java compiler determine 'method not applicable'?
When using a wildcards some methods (e.g. ArrayList.set) cannot be used and return an error message similar to
The method set(int, capture#3-of ?) in the type List is not applicable for the ...
-1
votes
4answers
64 views
method argument suitable for adding to a upper-bound ArrayList
the following code is part of an abstract class which is meant to be subclassed to manage a specific kind of Shape. (it's actualy a repository for a specific class but that's not relevant now)
...
2
votes
3answers
48 views
Is there a way to bound a generic type using an interface in Java?
I am trying to create a generic list which sorts the items entered into it using the .compareTo() method of the type. However, I ran into a problem in the very first line. Since the type must be one ...
4
votes
2answers
119 views
Class<? super T> in getSuperclass() Does it make sense?
Class<? super T> getSuperclass()
The getSuperclass() in Class class return a Class whose type is<? super T>, which mean that the type parameter of Class of the Super could be T or any ...
1
vote
3answers
79 views
Why we can instantiate Pair<T> but we can't with Pair<?>
So why can we able to instantiate Pair but we can't able to instantiate Pair
Pair<T> p=new Pair<T>();
VS
Pair<?> p=new Pair<?>();
I know that <?> mean unknown type ...
0
votes
1answer
110 views
Generic and wildcards explanation [closed]
Differences in these cases to add into generic types
Case1
import java.util.List;
import java.util.ArrayList;
class Apple{}
public class Macintosh extends Apple {
public static void ...
1
vote
3answers
89 views
Generic argument method ? super
Why can NOT be added a new Object into a List if with this type is supposed to be able to add any supertype of Apple?
import java.util.List;
import java.util.ArrayList;
class Apple{}
public class ...
0
votes
1answer
101 views
Generic upper bounded wildcard instantiation known at run time
class Aliphatic<F> extends Organic<F>{}
class Hexane<G> extends Aliphatic<G>{}
public class Organic<E>{
void react(E e){}
static void main(String[] args){
...
2
votes
5answers
192 views
Generic lower unbound vs upper bounded wildcards
import java.util.List;
import java.util.ArrayList;
interface Canine {}
class Dog implements Canine {}
public class Collie extends Dog {
public static void main(String[] args){
...
1
vote
1answer
119 views
Generic with a lower bounded wildcard <? super Dog>
class Animal{}
class Dog extends Animal{}
class Cat extends Animal{}
public class Mixer<A extends Animal>{
public <C extends Cat> Mixer<? super Dog> useMe(A a, C c){
...
1
vote
2answers
53 views
Why no bounded wildcard in input parameters of synchronizedCollection() static factory method?
I was going through the Java tutorial and stumbled on something which I did not understand. In the Collections trail, they talk about Wrapper implementations, there I notice two static factory methods ...
8
votes
4answers
133 views
Multiple wildcard bounds
Suppose that I have the following class:
public class Either<A, B> {
public Object get();
}
Either is a type that stores one object of either type A or B. get() retrieves that one ...
2
votes
2answers
488 views
Cannot Instantiate Type in generics
I have this class
public class Tree<T> {
//List of branches for this tree
private List<Tree<? super T>> branch = new ArrayList<Tree<? super T>>();
public ...
1
vote
1answer
149 views
Adding an element inside a wildcard type ArrayList
I am trying to add an element in a list where the list type parameter is a wildcard that extends Question
ArrayList<? extends Question> id = new ArrayList<? extends Question>();
...
7
votes
1answer
138 views
Wildcard with final upper bound
Class<? extends Integer> will compile fine, but Integer is a final type so it doesn't make sense to use it as an upper bound (nothing will ever extend it).
If you try to use a final type as an ...
4
votes
4answers
91 views
Covariant structure fails with capture-of error in Java
Consider the following Java class definitions:
class Animal {}
class Lion extends Animal {}
When defining a covariant Cage for Animals I use this code in Java:
class Cage<T extends Animal> {
...
3
votes
1answer
106 views
What's the correct usage of generic wildcards when defining functional Java APIs?
I'm writing functional-style static helper methods acting as operators for a generic abstraction (say Iterable<T>), and I'm a bit confused about when I should use wildcards. What are the ...
1
vote
2answers
127 views
Java Generics - wildcards
I'm new to Java and have gotten myself into a situation where it's evident that I'm misunderstanding something about how it handles Generics, but reading tutorials and searching stackoverflow hasn't ...
4
votes
6answers
215 views
Java Generics: adding wrong type in collection
Who could me explain this?
I have these couple of classes:
abstract class Animal {
public void eat() {
System.out.println("Animal is eating");
}
}
class Dog extends Animal {
...
1
vote
1answer
134 views
Generics Wildcards Proper Use
I have an object defined as follow:
protected Map<String, ? extends List<? extends LightGeometry>> geoms=new HashMap<String,List<LightGeometry>>();
I try to insert in an ...
0
votes
2answers
121 views
How to pass generics using wildcard to a function without casting?
Here is my problem:
my function in class A:
public void setData(Map<String,? extends ArrayList<? extends SomeInterface>>){...}
my call:
Map<String, ...
3
votes
1answer
141 views
A bad interaction between self-referential types and bounded wildcards
This case seems to be another one where Eclipse's Java compiler crushes javac. The only question for me is whether it's a bug in JLS or javac.
interface EndoFunctor< C, FC extends EndoFunctor< ...
4
votes
1answer
90 views
Is it possible to write a single method that accepts a generic parameter of varying abstraction?
As a followup to this question, is it possible to write a single method that adds a Dog to a suitable room? (In this example, it would accept either an Animal room or a Dog room.) Or am I forced to ...
0
votes
3answers
103 views
Why Wild Cards can't be used in generic class & method declaration?
Declaration like this :
class A<X extends Number & List> { }
is allowed.Whereas declaration like this is not allowed.
class A<? extends Number & List> { }
Is there any ...
0
votes
2answers
91 views
JAVA Wildcard Capture Error with an array of generic stacks
Stack<?>[] stacks = {
new Stack<Bed>(),
new Stack<Bookshelves>(),
new Stack<Chair>(),
new Stack<Desk>(),
new Stack<Table>()
};
That's the code ...
0
votes
3answers
131 views
Type Safety warning
In the book Java Generics and Collections by Maurice Naftalin, Philip Wadler, I was going through Generics limitations and came up with doubt. May be that is answered in the book, but I think I am ...
4
votes
4answers
3k views
Java Generics: Multiple Inheritance in Bounded Type Parameters <T extends A & I>
I am about to create a factory which creates objects of a certain type T which extends a certain class A and another interface I. However, T must not be known. Here are the minimum declarations:
...
0
votes
2answers
387 views
(Java) How to implement an interface method with a bounded wildcard generic?
I maintain 2 projects with the same functionality and I am consolidating this functionality into a commons project. I defined an interface:
public interface GraphData
{
public List<? extends ...
3
votes
3answers
117 views
generic methods and wildcards
What are the differences between the following three signatures?
static <T> void foo(List<T>, Comparator<? super T>);
static <T> void bar(List<? extends T>, ...
1
vote
3answers
206 views
Java generics wildcards
public interface UnivariateOperator<T> {
public TimeSeries<T> operateOn(TimeSeries<T> timeseries);
}
public class SamplingOperator<T> implements ...
4
votes
2answers
103 views
Bounded Wildcards in Java
This is not fine
List<List<? extends Number>> a;
List<List<Integer>> b;
a = b;
This is fine
List<? extends Number> c;
List<Integer> d;
...
4
votes
1answer
184 views
Java unbound wildcard generics
Are there any advantages of using wildcard-type generics in the Bar class over completely skipping them?
public class Foo<T> {}
public interface Bar {
public void addFoo(Foo<?> foo);
...
5
votes
2answers
403 views
Creating new generic object with wildcard
Please explain this generic code wildcard compile time error:
//no compile time error.
List<? extends Number> x = new ArrayList<>();
//compile time error.
List<? extends Number> ...
8
votes
3answers
729 views
Java bounded wildcard in return type
I've read in various places including here that having a bounded wildcard in a method return type is a bad idea. However, I can't find a way to avoid it with my class. Am I missing something?
The ...
0
votes
5answers
114 views
Can't refer to generic type from bounded wildcard reference
What is wrong with Class A below that won't allow it to compile?
public class GenericsHell {
interface Shape{}
interface Circle extends Shape {}
interface ShapeHelper<T extends ...
3
votes
3answers
131 views
Sharing a wildcard in Java generics
Suppose I have an interface
interface Foo<T> {
void foo(T x);
T bar()
}
and an object of this type with unknown parameter: Foo<?> baz. Then I can call baz.foo(baz.bar()).
...
1
vote
1answer
531 views
How do I use Java generic wildcards with methods taking more than one generic parameter?
So we have a generic method like this, which is part of dependency injection initialisation:
public static <TS, TI extends TS> void registerTransient(
Class<TS> serviceClass, ...
1
vote
3answers
222 views
Type mismatch with bounded wildcard ? super Type
I'm having a problem getting this type conversion working correctly. My guess is the bounded generic wildcard <? super SomeType> doesn't work with interface implementations.
// sample class ...
1
vote
1answer
164 views
Using Guice, how can I inject a bounded-wildcard class?
Using Guice, I want to inject a bounded-wildcard class. To be clear, I don't want to inject an object, but inject a class type. The would read:
class A {
Class<? extends SuperClass> a;
...
1
vote
1answer
106 views
Confusion about generic bounded wildcard types
Pretty trivial Java question. This code has an error:
public abstract class SubTypeDependentEditor<T> implements Editor<T> {
protected abstract Editor<? extends T> getEditorFor(T ...
3
votes
3answers
549 views
Java generic methods: super can't be used?
So I have this method:
protected void collectSelectedItems(ListSelectionModel lsm,
Collection<? super MyItemClass> result) {
for (int i : GUI.getSelectionIndices(lsm))
{
...

