Tagged Questions
The raw-types tag has no wiki summary.
19
votes
2answers
6k views
Java 6: Unsupported @SuppressWarnings(“rawtypes”) warning
I moved to a new machine which has the latest Sun's Java compiler and noticed some warnings in the existing Java 6 code. The Eclipse IDE, suggested that I annotate the assignment with:
...
17
votes
9answers
5k views
What is a raw type and why shouldn't we use it?
Questions:
What are raw types in Java, and why do I often hear that they shouldn't be used in new code?
What is the alternative if we can't use raw types, and how is it better?
Similar questions
...
15
votes
5answers
419 views
Why is Class<?> preferred to Class
If I declare a Class as a field:
Class fooClass;
Eclipse gives me the warning:
Class is a raw type. References to
generic type Class should be
parametrized
What does this mean in ...
11
votes
2answers
99 views
Why do raw types in one place cause generic callsites somewhere else to be treated as raw?
Consider this example:
import java.util.*;
class Foo<T> {
public int baz(List<String> stringlist) { return 1; }
public int baz(ArrayList<Object> objectlist) { return 2; }
...
6
votes
4answers
2k views
Can unchecked warnings be avoided when overriding a method with raw type parameters?
I am extending a class defined in a library which I cannot change:
public class Parent
{
public void init(Map properties) { ... }
}
If I am defining a class 'Child' that extends Parent and I am ...
5
votes
4answers
135 views
Java generics and design patterns: not parameterizing a reference to a generic type is always a bad thing?
this question is partially related to my last question.
I have a generic class representing a collection of generic objects:
public interface MyObject<N extends Number>{}
public interface ...
4
votes
6answers
151 views
What does <?> stand for in Java? [closed]
Possible Duplicate:
Java Generics
In Eclipse, I am given warnings for using 'rawtypes' and one of it's fixes is to add <?>. For example:
Class parameter = String.class;
...
4
votes
2answers
108 views
What are the security implications of using raw types in Java?
I'm currently reviewing the security implications of various warnings in a large Java EE application. Since most of the code is several years old, it contains many uses of the raw collection types:
...
4
votes
3answers
621 views
Scala class cant override compare method from Java Interface which extends java.util.comparator
I'm currently working on a port of a jEdit plugin to write all code in Scala. However Im forced at a certain point to implement my own Comparator.
My simplified code is as follows:
class compare ...
4
votes
4answers
2k views
Is it good practice to replace Class with Class<? extends Object> to avoid warnings?
In a bunch o' places in my code, I have something like this:
public Class mySpecialMethod() {
return MySpecialClass.class;
}
which causes the warning
Class is a raw type. References to
...
3
votes
3answers
214 views
Why does the Java Compiler complain on using foreach with a raw type?
I got a strange compiler error when using generics within a for-each loop in Java. Is this a Java compiler bug, or am I really missing something here?
Here is my whole class:
public class ...
3
votes
2answers
288 views
Why does Scala complain about illegal inheritance when there are raw types in the class hierarchy?
I'm writing a wrapper that takes a Scala ObservableBuffer and fires events compatible with the Eclipse/JFace Databinding framework.
In the Databinding framework, there is an abstract ObservableList ...
3
votes
1answer
161 views
Name for a specific raw type/unchecked cast combo in Java generics usage
Effective Java 2nd Edition says that we should not use raw types in new code, and we must also try to eliminate all unchecked casts warnings, and to prove and document its safety if we choose to ...
2
votes
3answers
2k views
Java generics: How to cast to (T extends Comparable<? super T>) without raw-types
I wonder whether it is possible to cast a non-Comparable to something so that it matches the method parameter T which has template type <T extends Comparable<? super T>>, like the ...
2
votes
2answers
189 views
Java untyped generic classes, removing their functions generics types
Sorry for the poor title,
Ok Question about javas generics, iterable, and for-each loop. The problem being that, if I declare my 'Test' class untyped, I lose all generic information on all my ...
1
vote
2answers
89 views
Which is the best way to iterate over a non-generic List? [closed]
I have to use an old piece of code where I have a List and I need to iterate over it. Foreach loop does not work. Which is the best and safest way to do this?
Example
private void process(List ...
1
vote
1answer
148 views
Java generic programming with unknown generic type of interface
I'm using several interfaces with generics types. While combining it together I have some problems when I have to use them from a part of the code that is unaware of the concrete type of the generic ...
1
vote
5answers
355 views
Java: removing “Comparable is a raw type” warning
Suppose I have a method called foo taking 2 Object as parameter. Both objects are of the same type and both implements comparable interface.
void foo(Object first, Object second){
if ...
1
vote
0answers
463 views
Eclipse Helios - @SuppressWarnings “rawtypes” doesn't work while “unchecked” does
I have a problem with the @SuppressWarnings annotation when handling raw-types warnings in Eclipse Helios.
According to this post and the docs, the annotation parameter rawtypes should be used ...
0
votes
1answer
46 views
Java - passing class with annotation to generic method
I'm working with JPA 2 and have the following method:
private static void wipeTable(EntityManager em, Class<? extends Table> klass) {
String tableName = ...
0
votes
3answers
45 views
Avoiding raw types in Java message dispatcher
Objective
I am trying to build a MessageDispatcher that converts messages from a 3rd party API in to user defined messages and then dispatches them to a user registered listener.
The user will be ...
0
votes
7answers
78 views
What could happen when one of the type parameters was not specified during instantiation of a collection?
The instantiation of a collection in Java is normally as below:
ArrayList<Integer> ali = new ArrayList<Integer>();
It is said that with this convention, certain errors such as
String s ...