So I am trying to make a parameterized type that will work for anytype in Java this includes anything that is an object, and also the primitives types. How would i go about doing this?
Ok, suppose I want the target of a for-each to be a primitive, so its
for(int i : MyClass)
something like that. Is this possible to do?