Burt has the right reason and Henning expands on it in the comments. When referencing a member of a raw type, generics don't come into play at all, even generics that don't rely on the type parameter.
As an example, this should compile just fine...
public class DataHolder<T> {
public List<T> ts;
public List<String> strings = new ArrayList<String>();
}
//...
DataHolder holder = new DataHolder();
holder.strings.add(Integer.valueOf(42));
...even though T doesn't need to be mapped to a concrete type to know what the type of strings should be.
This is true for generic member methods as well, which is what you are running into. entrySet returns the raw type Set, not Set<Entry>, even though the type parameters would not need to be known to return a Set<Entry>. The behaviour is documented in the Java Language Specification, section 4.8:
The type of a constructor (§8.8), instance method (§8.8, §9.4), or non-static field (§8.3) M of a raw type C that is not inherited from its superclasses or superinterfaces is the erasure of its type in the generic declaration corresponding to C. The type of a static member of a raw type C is the same as its type in the generic declaration corresponding to C.
It's a very "gotcha" rule.
See also
Java Class Generics and Method Generics conflicts
Set<Entry> entries = data.entrySet(); for (Entry entry : entries) { .. }compiles though. – Nikita Beloglazov Aug 28 '11 at 3:32datavariable but usemapin cycle. Also may be add imports? As I see you useimport static java.util.Map.Entry;it's not very obvious though. – Nikita Beloglazov Aug 28 '11 at 3:36error: incompatible types: for(Map.Entry entry : data.entrySet()) {java 1.7.0 ubuntu 11.04 – Nikita Beloglazov Aug 28 '11 at 4:13