The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
47 views

array of wildcard collection initialized with array of rawtype

Reasonably enough, compiler would give you Raw type conversion warning for this: //1 List<?> arrList = new ArrayList(); //raw type warning However, compiler is ok (no warning) with this line: ...
0
votes
3answers
88 views

Java generics and raw type

When I write the method this way. I get this warning: BaseEvent is a raw type. References to generic type BaseEvent should be parameterized @Override public <T extends BaseEvent> void ...
6
votes
1answer
110 views

why I can set primitive types to null in ternary operations

I always thought that primitive types in Java cannot be null, as it is a compile time error if i attempt to do something like this: int test = null; However in a ternary operation, it seems to be ...
1
vote
3answers
173 views

Collection of abstract generic class, raw type warning

I have following class hierarchy: public abstract class Property<T> { private long id; private String name; private T value; /*setters and getters*/ } public class ...
2
votes
2answers
76 views

The fact that a raw type of generic class can take all different variations of that generic class is matter of Java compatibility?

I noticed that a raw type of a generic class can take(point to) all different variations of the generic class and also all different variations of a generic class can take(point to) the raw type of ...
5
votes
4answers
253 views

Combining Raw Types and Generic Methods

Here's a question, this first code listing compiles just fine (JDK 1.6 | JDK 1.7): ArrayList<String> a = new ArrayList<String>(); String[] s = a.toArray(new String[0]); However, if I ...
1
vote
3answers
130 views

Creating a Class[T] from a Manifest[T] without casting

Given an ev: Manifest[T] I can get a Class[T] using ev.erasure.asInstanceOf[Class[T]]. It's a shame that ev.erasure alone returns a static type of Class[_]. Can I get a Class[T] from a manifest ...
4
votes
3answers
146 views

What's the best way to deal with potential runtime exceptions from a java “unchecked conversion”?

So I have a function that looks like this: @SuppressWarnings("unchecked") public static <E> Set<E> getSetOfClass(Query q,Class<E> clazz) { return new LinkedHashSet<E>( ...
0
votes
1answer
636 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 = ...
2
votes
3answers
438 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 ...
1
vote
2answers
355 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 ...
5
votes
4answers
486 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 ...
1
vote
1answer
471 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 ...
3
votes
5answers
3k 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 ...
4
votes
6answers
378 views

What does <?> stand for in Java? [duplicate]

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; ...
0
votes
7answers
177 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 ...
11
votes
2answers
121 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; } ...
2
votes
0answers
1k 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 ...
4
votes
3answers
518 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
3answers
5k 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 ...
3
votes
2answers
438 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 ...
2
votes
2answers
348 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 ...
18
votes
5answers
703 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 ...
3
votes
1answer
241 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 ...
23
votes
2answers
13k 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: ...
4
votes
2answers
121 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
902 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 ...
72
votes
9answers
28k 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 ...
7
votes
4answers
4k 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 ...
6
votes
4answers
3k 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 ...