In the following:
public interface SomeInteface<A, B> {
public B doSomething(A a);
}
I want to implement a version where the method doSomething returns the parameter a back.
I tried a Holder class;
class Holder<A> {
public A value;
public(A a){this.value = a;}
}
and return Holder. However, I am not sure how to define an implementation class of SomeInterface so that I am able to do this.
The following does not even compile:
public class SomeImplementation<X> implements SomeInterface<T> {
private class Holder<A> {
public A value;
public class Holder<A>{
public A value;
public(A a){this.value = a;}
}
}
class Implementation<A, Holder<A>> implements SomeInterface<A, Holder<A>>{
public Holder<A> doSomething(A a){
//do stuff
return new Holder(a);
}
}
}
What am I messing up here?
class Implementation<A, Holder<A>>– Cratylus Aug 13 '12 at 18:01<A, Holder<A>>as the generic type parameters; you specify the parameter names in the class declaration, the generic type arguments when you actually construct such an object. You'd need something likeclass Implementation<A, B> implements SomeInterface<A, B>, and then later declare a variable likeImplemenation<String, Holder<String>> myImpl = new Implementation<>();– dlev Aug 13 '12 at 18:04