I have the following class:
abstract class MyAbstract<T>
{
T val_;
MyAbstract(T val)
{
val_ = val;
}
T getVal()
{
return val_;
}
}
I would like my abstract class to have a different body for T = String, for example (bear with me):
abstract class MyAbstract<T extends String>
{
T val_;
T upperVal_;
MyAbstract(T val)
{
val_ = val;
upperVal_ = val.toUpperCase();
}
T getVal()
{
return upperVal_;
}
}
The result I am trying to achieve is that if I extend MyAbstract, the second version will be used, otherwise the first one. Is this possible, and how? Thanks!
Update: I want to be able to extend the same abstract class and do stuff like:
Type1 extends MyAbstract<Integer>...
and
Type2 extends MyAbstract<String>...
(note that I use MyAbstract for both Types)