Tagged Questions

29
votes
6answers
42k views

Type safety: Unchecked cast

In my spring application context file, I have something like: <util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String" value-type="java.lang.String"> <entry ...
7
votes
5answers
3k views

What is the meaning of the type safety warning in certain Java generics casts?

What is the meaning of the Java warning "Type safety: The cast from Object to List is actually checking against the erased type List"? I get it when I try to cast an Object to a type with generic ...
5
votes
3answers
151 views

Type-safe flattening of nested collections/structures in Java

I would like to flatten arbitrary deeply nested collections/structures of elements of some type T in Java, optimally with only having a live view and not a copied collection; not only handling ...
5
votes
7answers
270 views

How do you test the type-safetiness of your genericized API?

You can use e.g. JUnit to test the functionality of your library, but how do you test its type-safetiness with regards to generics and wildcards? Only testing against codes that compile is a "happy ...
5
votes
7answers
207 views

Better type safety in Java collections

In my java coding, I often end up with several Map<String,Map<String,foo>> or Map<String,List<String>> and then I have trouble remembering which String is which key. I comment ...
5
votes
3answers
774 views

Generics and sorting in Java

Suppose you write a static function in Java to sort an array, much like Arrays.sort(). The problem with Arrays.sort() is that it receives an array of Object, and throws a ClassCastException if its ...
5
votes
9answers
3k views

Java: type safety, generics, .equals()

I'm trying to override equals() for a parametrized class. How can I make sure that this parameter is the same? /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) * Because this is ...
4
votes
3answers
292 views

Java: properly checked class instantiation using reflection

I'm trying to use one of the simplest forms of reflection to create an instance of class: package some.common.prefix; public interface My { void configure(...); void process(...); } public ...
4
votes
4answers
166 views

mix generic type variables to implement a type-safe map function in Java

I want to write a type-safe map method in Java that returns a Collection of the same type as the argument passed (i.e. ArrayList, LinkedList, TreeSet, etc.) but with a different generic type (that ...
4
votes
3answers
1k views

Java Generics Type Safety warning with recursive Hashmap

I'm using a recursive tree of hashmaps, specifically Hashmap map where Object is a reference to another Hashmap and so on. This will be passed around a recursive algorithm: foo(String filename, ...
3
votes
1answer
93 views

How can I design a type-safe stack in Java preventing pops from an empty list?

This is an offshoot of these two questions: 1, 2. I'd like to implement type-safe data structures in Java that prevent nonsensical operations. For example, if the compiler knows I have an instance ...
3
votes
2answers
119 views

Prevent method call using compiler tricks

I have roughly these types: interface Record {} interface UpdatableRecord extends Record {} interface Insert<R extends Record> { // Calling this method only makes sense if <R extends ...
3
votes
2answers
158 views

Type-safe mapping from Class<T> to Thing<T>

I want to make a map-kind of container that has the following interface: public <T> Thing<T> get(Class<T> clazz); public <T> void put(Class<T> clazz, Thing<T> ...
2
votes
3answers
60 views

Modelling abstract compositions with type-safety

I have a structural problem that I could use your help with. I'll explain the abstract problem first, then an example to illustrate the problem. Consider an abstract class A holding a number of ...
2
votes
2answers
139 views

Java and Type Safety

The MDN JavaScript guide states the following when doing a comparison between Java and JavaScript: Type safety means, for instance, that you can't cast a Java integer into an object reference or ...
2
votes
3answers
82 views

Java type safety warning

I'm trying to make an array of vectors like this: Vector<String>[] wordList = new Vector[29]; for (int i = 0; i < wordList.length; i++) { wordList[i] = new Vector<String>(100); } ...
2
votes
3answers
61 views

How to create a Set in which only a single type can be added which doesn't permit subclasses or superclasses to be added?

I want a Set which only holds one data type and doesn't permit any of its superclasses or subclasses from being added to the Set.
2
votes
4answers
338 views

Type safety : Unchecked cast and Generics

I have a very simple map private Map<String,T> map = Collections.synchronizedSortedMap(new TreeMap<String,T>()); I would like to define the following method public T[] values(){ ...
2
votes
4answers
732 views

Java generics: why someObject.getClass() doesn't return Class<? extends T>?

I would expect that from the aspect of compile time as well as from the aspect of runtime it wouldn't be a problem for .getClass() to provide a correctly-typed return value. But I must be wrong. ...
2
votes
2answers
183 views

is spring framework 3.0 type-safe

In another question I asked, raised a concern that spring framework is not type safe. Is it true, or fixed, and can you give an example what it means exactly?
2
votes
2answers
367 views

How can I do type-safe Xpath queries in Java?

I'm currently using JDOM for doing some simple XML parsing, and it seems like nothing's type safe - I had a similar issue with using the built-in Java DOM parser, just with lots more API to wade ...
2
votes
3answers
445 views

Convert java legacy code to generic - how to replace Object with type?

// legacy code void setCacheValue(String name, Object value){ getServletContext().setAttribute(name, value); } Object getCacheValue(String name){ return ...
2
votes
1answer
1k views

Java enums in MIDP 2 mobile application

I've just got back to MIDP development after some 4 years of .NET 2 and Java 5 and 6. During that time I got to like using enums quite a lot. Enum is a language feature that allows a developer to ...
1
vote
1answer
46 views

Hibernate Query Result List and Type safety?

This results in unchecked warning: public List<Person> list() { return sessionFactory.getCurrentSession().createQuery( "FROM Person" ).list(); } Already tried, without success: public ...
1
vote
6answers
60 views

Java unsafe or unchecked expressions: cloning an arraylist

I got the unchecked expression error when compiling and found the offending line to be ArrayList<Integer> items = (ArrayList<Integer>) this.items.clone(); I am trying to perform a deep ...
1
vote
5answers
74 views

Extending String for Typesafety - Java

I am considering a design in Java where I want a string object but with more 'type-safety' than just being of class String. This because I have a number of 'POJO' objects for Hibernate, representing ...
1
vote
2answers
234 views

How parametrize generic singleton in java

I have next problem. I have an interface: public interface Worker<T> { public void start(Class<? extends T> taskClass); } and singleton implementation of this interface: public ...
1
vote
4answers
158 views

“Overriding” instance variables in subtype: Possible risks?

Say I had a class SuperClass and two subclasses SubClassA and SubClassB that inherit from SuperClass. abstract class SuperClass{ ... List someList; ... } class SubClassA extends ...
1
vote
2answers
2k views

Java Builder pattern with Generic type bounds

I'm attempting to create a class with many parameters, using a Builder pattern rather than telescoping constructors. I'm doing this in the way described by Joshua Bloch's Effective Java, having ...
1
vote
5answers
3k views

Type safety: Unchecked cast from Object

I try to cast an object to my Action class, but it results in a warning: Type safety: Unchecked cast from Object to Action<ClientInterface> Action<ClientInterface> action = null; try { ...
1
vote
1answer
419 views

Lucene's nested query evaluation regarding negation

I am adding Apache Lucene support to Querydsl (which offers type-safe queries for Java) and I am having problems understanding how Lucene evaluates queries especially regarding negation in nested ...
0
votes
1answer
77 views

type safe manner to access fields without instantiation?

I've recently come across the problem (mostly dealing with database work) that I'll need to access data about a class without the need to have an instantiated object. An example of this would be the ...
0
votes
4answers
98 views

Generic parameter as variable - Java

The constructor NotePanel(itemClass) refers to the missing type itemClassI have a class NotePanel<T extends AbstractNoteItem> extends JPanel, and a method in a separate class that returns a ...
0
votes
2answers
77 views

Type erasure and collections

I am having a specific problem implementing a parametrised class Parameter, but this is something I have come across before with generics, so a general solution would be good.. The class Parameter ...
0
votes
2answers
246 views

closures mean fully type-safe criteria?

combining closures (FCM) and generics, would it be possible to have fully type-safe criteria. // The following works without a cast as Foo.id is a 'long' field. List<Long> ids = ...
0
votes
2answers
4k views

Java: Type safety - unchecked cast

Here is my code: Object[] data = GeneComparison.readData(files); MyGenome genome = (MyGenome) data[0]; LinkedList<Species> breeds = (LinkedList<Species>) data[1]; It gives this warning ...