Tagged Questions
0
votes
5answers
73 views
Java Generics Causing Class Cast Error
So I'm coding up a generic adjacency list and my code has no compile errors, but when I run my tests I get the same runtime error across the board:
java.lang.ClassCastException: [[Ljava.lang.Object; ...
1
vote
3answers
81 views
java generics with ArrayList
I have java Generics related question
I have Parents class called Container like below: Container can contain other containers and Services. Services class extends Container but can contain only ...
0
votes
1answer
68 views
Why is it allowed to add primitive datatypes to an ArrayList?
I understand that it is possible to add an Integer Object to an ArrayList of type Integer. That makes sense to me. Like this:
ArrayList<Integer> list = new ArrayList<Integer>();
...
0
votes
0answers
49 views
List<T>.class? [duplicate]
I have the following question :
If I use in my program String.class, it works
If I use List.class it works
But if I use List<String>.class it cannot compile
Could you help me to understand why ...
8
votes
3answers
81 views
Is it possible to have a variable amount of Element types in a java generic class
I was wondering if it is possible to have something like this:
public class foo<T...>
so you can call the class like
Foo<Object0>
Foo<Object0, Object1>
Foo<Object0, Object1, ...
-1
votes
2answers
37 views
How subtype can be added to a supertype list via Java Generics [duplicate]
I am trying to do something like this which compiles fine:
public interface Training {
public void train();
}
public class JavaTraining implements Training{
@Override
public void ...
0
votes
2answers
48 views
Java Generic Classes Arrays
I was reading this answer, and now got confused about the normal array declaration and this piece of code used to create arrays for generic classes:
Gen<?> gens[] = new Gen<?>[10];
What ...
0
votes
2answers
34 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:
...
8
votes
1answer
91 views
How to safely convert from a Collection of generic types to an array?
For various reasons I want to convert a list to an array, however the Collection contains objects that are themselves generics.
I have tried the following four options to get it to compile without ...
1
vote
0answers
36 views
Why Java Map does not make use of parameterized types in all its methods? [duplicate]
Why if the Java Map interface is declared with these type arguments:
Interface Map<K,V>
Type Parameters:
K - the type of keys maintained by this map
V - the type of mapped values
The ...
3
votes
1answer
83 views
How to get class of T from Vector<T> in java
I wrote this code:
public static <T> void getList(Vector<T> result){
System.out.println(result.getClass().getName());
}
I want to write the class name of T, but I can't get it. How ...
0
votes
2answers
52 views
OOP & Java: how to generalize from an abstract class?
first of all, i'd like to apologize about my grammar, since english is not my first language, usually i make grammar mistakes...
There is some problem that always prevent me from making generic code: ...
2
votes
1answer
36 views
Passing a class type to a method, then casting to that type?
I'm still pretty new to Java, so I might be missing something obvious here.
I have the following code that I use to pick class types from a list of all my entities:
public Array<?> ...
0
votes
4answers
59 views
Trouble with Java generics in non-generic class
public class method
{
private static class Foo
{
public void hello() { System.out.println("Foo"); }
}
private static class Bar
{
public void hello() { ...
0
votes
3answers
35 views
Nested generic collections
Without getting bogged down with specifics, my code represents a library whereby each book is made up of a Set of pages containing a Set of Words.
I have created my own Set implementations:
class ...
7
votes
2answers
76 views
Failing to compile correlated Java Generics parameters with wildcards
The following little Java example won't compile for unclear reasoning:
package genericsissue;
import java.util.ArrayList;
import java.util.List;
interface Attribute<V> {}
interface ...
2
votes
5answers
106 views
Why does new HashMap<> produce an error in JDK 1.6 but not 1.7
I noticed the following code works when compiling in eclipse with java spec 1.7 but does not work with 1.6.
HashMap<String, String> hashMap = new HashMap<>();
I'd like an explanation ...
10
votes
3answers
131 views
Generics Oddity - I can insert a Long value into a Map<String, String> and it compiles and doesn't fail at runtime
Give the following code:
public static void main(String[] args) {
HashMap<String, String> hashMap = new HashMap<>();
HashMap<String, Object> dataMap = new ...
2
votes
2answers
52 views
How do I Invoke a Generic Method with Specific Type Parameters?
I have a method with the following signature:
<T> T getBody(Class<T> type)
that returns the body object as the specified type. How do I invoke it to return an object of type
...
3
votes
1answer
80 views
How to return an actual instance from a method with a generic return type
I'm having hard time with creating a type safe behavior, I'll use a general example in order to emphasize my issue:
I have an interface BoxCreator which is defined by:
public interface BoxCreator{
...
1
vote
3answers
87 views
Difference between SomeClass and SomeClass<?>
In Java 6 something like MyClass and MyClass<?> were considered equal but in Java 7 they are not.
With Java 7, as an example I stumble to problems with for example Hamcrest matchers that are ...
2
votes
2answers
55 views
Type-safer way to implement event driven architecture?
I'm trying to implement a extendable even driven architecture in Java. Unfortunately I can't make it totally type safe. The following is what I did.
First I define the event. It's an almost empty ...
0
votes
1answer
64 views
Compilation differences between unspecified generic and <?> in java [duplicate]
I find this completely baffling. For some reason, javac appears to treat references with unspecified generics and <?> differently in regards to type safety. Does anyone have an idea of why this ...
0
votes
2answers
52 views
Converting generic list to generic array [duplicate]
How can I convert my list, items into a CountedItem[]?
import java.util.LinkedList;
import java.util.Collections;
import java.util.Comparator;
public class CountedSet<E>
{
...
-1
votes
1answer
56 views
Why is this not an error in Java Generics [closed]
In generics, we are not supposed to create an array of generic type. But however, this type of generic array is supported.
List<?> list[] = {};
Why isn't this an error / why is it supported?
4
votes
4answers
116 views
How to pass an object with an unknown type to a Class with an unknown type
I am currently working on a homework assignment for a Java programming course I am taking. I am not asking for an exact answer, but for some guidance.
The problem I'm working on is this:
I have a ...
0
votes
3answers
64 views
(How?) can I parameterize a Java class with multiple, orthogonal interfaces?
Is it possible to specify multiple interfaces for a generic type in Java?
Specifically, I am working with an existing library (NASA World Wind) that has a number of interfaces for its objects. I ...
2
votes
2answers
73 views
Java generics interface implementation
I have an interface as follows,
public interface MethodExecutor {
<T> List<T> execute(List<?> facts, Class<T> type) throws Exception;
}
Also, I have a generic ...
-2
votes
0answers
61 views
Difference between using generic functions and using if (a == null) [closed]
What is the difference between using a generic function, and when using a simple if statement in JSP to determine a null?
eg:
public static String nn(String a) {
return nn(a, "");
}
...
1
vote
1answer
32 views
Avoid Unchecked Call Warnings
I have the following code (part of it)
public class Garage<T extends Vehicle>{
private HashMap< String, T > Cars;
private int Max_Cars;
private int Count;
public ...
3
votes
1answer
40 views
Submit task which implements a subinterface of Callable<T> to an ExecutorService
How to submit task which implements a subinterface of Callable<T> to an ExecutorService?
I have a subinterface of Callable<T> defined as:
public interface CtiGwTask<T>
extends ...
2
votes
2answers
71 views
Generics and Class, deciding subclass in constructor
I want to be able to have (one of) my constructor decide what implementation of list it wants to use. The code I came up with compiles just fine without warnings but the IDE (eclipse) complains on the ...
18
votes
3answers
238 views
Java Generic with 1 type parameter and 2 constraints
I know it's possible to add multiple constraints to a Generic class definition, e.g.:
class Example<I extends Object & Comparable<Object>>{}
But I want a generic (MyGeneric) that ...
4
votes
1answer
75 views
How can I build an interface hierarchy for my fluent API?
I'm working on a fluent API and trying to take advantage of Java's generic methods to offer an elegant API that handles type conversions for my users. I'm running into some trouble getting it working ...
2
votes
2answers
70 views
What is the use of recursive type bound in this case
I have the following piece of code
public static <T extends Comparable<T>> T max(List<T> list){
Iterator<T> iter = list.iterator();
...
// code for finding the max ...
2
votes
3answers
90 views
Generic List and reflection
I'd like to call via reflection the following method, but I have problem to specify the correct signature:
public void executeRule(List<Node> params, SomethingStrangeFound callMeBack) throws ...
1
vote
0answers
23 views
Netbeans Generics Bug using FEST, Java?
I have the following non-generic method for getting a JListFixture using FEST:
public static JListFixture getJListFixtureNonGeneric(final FrameFixture frame) {
return frame.list(new ...
1
vote
1answer
20 views
Jackson mapping fails for generics passed as parameter
I have a common api to get different entity from rest API. Below is a method for getting list of entities (Groovy).
class CommonRestApi<T>{
CommonRestApi(){
}
....
List<T> ...
-2
votes
1answer
49 views
Function signature with generics java
I am trying to understand lambda expressions in Java and came across this blog post:
Tutorial Lambda Expressions
Take the first two code snippets:
import java.util.ArrayList;
import java.util.List;
...
0
votes
2answers
95 views
using generics correctly with maps
i have all sorts of items extending baseItem.
for each type i have a special handler class.
i use a map of handlers, using the item className.
so my handling method is something like this:
private ...
2
votes
1answer
40 views
How can I return a list of a certain type when calling a generic method that accepts a Class<T> and returns a T?
I'm calling a method from a library with this signature:
public <T> T get(Class<T> c)
And I'd like to get a List<MyClass> as a return value. But calling it like this does not ...
4
votes
2answers
86 views
How can we describe T<S> as return type for a method using generics in java
How can we describe T<S> as return type for a method
<T,S> T<S> getResult(Class<T> tClass, Class<S> sClass)
1
vote
0answers
19 views
Stop Eclipse from sliding curly braces way to the right for methods returning generic types
I configured Eclipse to adhere to my employer's code style, but one tiny detail isn't working right: I told it to put all braces on the next line, unindented, and line wrap method parameters, aligning ...
2
votes
3answers
56 views
What's the need of generics here?
In the following code taken from this oracle tutorial:
public class FileVisitor extends SimpleFileVisitor<Path>
is there any need to use generics?. I cannot get this aspect of Generics.
Why ...
0
votes
3answers
60 views
How can I reduce code duplication in my database access layer?
I am new to Java and I'm trying to implement a basic database access layer.
I'm using Apache DBUtils to reduce JDBC boilerplate code and this is working really well.
The problem is that my ...
0
votes
2answers
48 views
Is the unbounded wildcard type used only to create references?
I have seen a lot of cases where in, the ? type is used only to create references. And we are not able to add any Objects other than null. So, is the use of '?', only to create references?
Also, what ...
0
votes
1answer
34 views
Syntactical issue using generics
This is a homework problem:
I have a generic class defined as follows:
public class PriorityQueue<T extends Comparable<T>> {
ArrayList<T> queue;
public PriorityQueue(){
...
1
vote
4answers
76 views
Implement a generic interface without type parameter
Let's say I have an interface A with generic type:
public interface A<T> {
T getT();
}
and a class B implementing it:
public class B implements A {
public Integer getT() { return 1; ...
1
vote
3answers
84 views
Understand List of List in Java [closed]
I am understanding the concept of generics in Java. I am unable to understand the following lines of code.
import java.util.List;
import java.util.ArrayList;
public final class Main {
public ...
1
vote
0answers
102 views
Java; Generic Observer/Observable - is this as messy as I think? [migrated]
I have recently had a whole load of help trying to roll my own loosely-coupled Observable/Observer paradigm, here: Loosely coupled observer pattern
To keep things simple and to aid in my ...







