The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
35 views

Java generics capture inner class

I have this code: public class UndirectedGraphImpl<N> { [...] public Iterator<Edge<N>> adj(N v) { return new AdjIterator(v); } private class AdjIterator ...
7
votes
2answers
83 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 ...
0
votes
0answers
58 views

Recursive Generic Definition

So I was watching this video of the awesome Jon Skeet: http://www.youtube.com/watch?v=3DkISWIouY4 (watch from the beginning to see the part I'm going to ask you about!) So consider the following ...
1
vote
3answers
77 views

Generics implementation using interface with generics

I have an interface Value and a class Record public interface Value<T> { T getRawValue(); } public class Record<Value<T>> { private Value<T> value; T ...
7
votes
1answer
85 views

Generics Puzzler

I am trying to figure out how to get generics to jump through hoops. I have: interface Root { } interface Middle extends Root { } class Type implements Root { } And many "Subtype" classes: class ...
3
votes
1answer
108 views

Iterate over nested maps

I put together these methods to help iterate over nested maps (for another SO question). As you can clearly see, the first two methods are actually almost exactly the same apart from their generics ...
1
vote
3answers
166 views

Java: “uses unchecked or unsafe operations. Recompile with…”

Despite spending a significant amount of time googling for an answer to my predicament and re-reading the chapter on Generics in my Java textbook I cannot seem to fix the problems with the following ...
8
votes
3answers
172 views

Why these generics don't compile in OpenJDK7, but do in OpenJDK6

class HasId<I> {} class HasStringId extends HasId<String> {} class Alert<T extends /*Some*/Object> extends HasStringId {} class BaseController<M extends HasId<String>> { ...
3
votes
2answers
81 views

declaring double use of wildcards in java

I'm having trouble declaring a fully generic type for the output of a method. Here's the situation: class A<S,T>{ public Callback<B<S,T>,C<S,T>> method(); } in my code I ...
1
vote
1answer
106 views

Is there any point in <T extends View> in Android coding?

I tried to define a class that wraps android.view.View and its subclasses, and contains some info on rendering (people might call it as View Model or PresentationModel). public class MyClass<T ...
1
vote
2answers
104 views

Is there any way to get a class for or instantiate a doubly-generic type in Java?

So say I have: public class Foo<T> { // Some stuff } public interface Factory<T> { T newInstance(); Class<T> getKlass(); } And I want to make an implementation of Factory ...
10
votes
4answers
273 views

Java nested generic type mismatch

In the following example: public static void main(String[] args) { List<String> b = new ArrayList<String>(); first(b); second(b); List<List<String>> a = new ...
2
votes
2answers
137 views

Inconvertible types with nested generics

I looked at the other typecasting Java generics questions I'm still confused. I have the following class hierarchy: WeightedThing<T> (just adds a weight to some random type) and a custom Vector ...
0
votes
2answers
101 views

Create value nested generic type and assigne it to variable

here I created the variable appointment of type Pair<Pair <int, int>, String> I would like to create a value of this type and assign it to appointment. Could somebody help me? I am new ...
17
votes
3answers
485 views

Nested Generics: Why can't the compiler infer the type arguments in this case?

I was playing around with a hobby project when I came across a type-inference error I didn't understand. I have simplified it to the following trivial example. I have the following classes and ...
-4
votes
3answers
211 views

Searching a nested List<T>

I have this data structure: class Conference { private List<List<string>>_orgs; public List<List<string>> Orgs { set { _orgs = value; } get { return _orgs; ...
1
vote
1answer
300 views

TypeLoadException thrown when dynamically instantiating an object with a nested type arg

Whilst contributing to an OSS project for work, I'm running into a TypeLoadException. I'm working on creating a seam whereby a developer could inject their own Repository class to remove a concrete ...
0
votes
1answer
113 views

How to get the .class of a Generics defined entity?

So how can I do the following in Java? List<String> strings = new ArrayList<String>(); JAXBElement<List<String>> jax = new JAXBElement<List<String>>(new ...
6
votes
2answers
247 views

Nested generic syntax ambiguity >>

Apparently, C# is as susceptible to '>>' lexer dilemma as is C++. This C# code is pretty valid, it compiles and runs just fine: var List = new Dummy("List"); var Nullable = new Dummy("Nullable"); ...
0
votes
2answers
84 views

Constructor argument gets lost when passed to super constructor

In my GWT app I have a datatype (intended for building and tracking hierarchies of like objects) that extends a superclass, which in turn extends another, abstract superclass. There is a generic ...
9
votes
3answers
782 views

Implementing nested generic Interfaces

I have the following Classes / Interfaces: // Model public class A : IA { } // ModelLogic public class B : IB<A> { } // Model Interface public interface IA { } // ModelLogic Interface public ...
0
votes
1answer
158 views

Lost in the generics and reflection sauce

I am trying to build an MVC helper for building a MultiSelectList with my own sort of parameters. I am basing it off of a SelectFor helper I built a while back. The SelectFor looks like this: ...
0
votes
3answers
176 views

Avoiding unchecked casts of nested Maps in Java

I have a Java data structure which results from deserialising this JSON: { 'level1 value1': { 'level2 value1': { 'level3 value1': [ "25", "45", "78" ], // ... 'level3 valueN': ...
5
votes
2answers
231 views

Why aren't type constraints part of the method signature?

So I read Eric Lippert's 'Constraints are not part of the signature', and now I understand that the spec specifies that type constraints are checked AFTER overload resolution, but I'm still not clear ...
9
votes
2answers
1k views

Flatten IEnumerable<IEnumerable<>>; understanding generics

I wrote this extension method (which compiles): public static IEnumerable<J> Flatten<T, J>(this IEnumerable<T> @this) where T : ...
3
votes
2answers
305 views

Parameterized Type Parameters?

I'm trying to create library with a container that releases instances of its contained objects according to descriptors it is passed. I'd like to make it so the descriptor determines the type of the ...
0
votes
1answer
173 views

Scala instantiation from manifests in nested generic code

If I could figure out how to "attach manifests back the generic call stack" (as Joshua writes about in section 7.2.2 of "Scala in Depth"), would that enable me to instantiate B along those lines?: ...
4
votes
3answers
300 views

Generic java class that stores comparables

I have a generic java class that stores comparables: public class MyGenericStorage<T extends Comparable<T>> { private T value; public MyGenericStorage(T value) { ...
7
votes
0answers
81 views

Hidden type inference with generics? [duplicate]

Possible Duplicate: No type inference with generic extension method I have a generic interface, and two concrete implementations of it. I then have a method which is an extension method on ...
5
votes
3answers
305 views

Nested Type Parameters in Java

This is an example which I made up to be a simplification of my real code, so I apologize if it is a little contrived. What I would like to do is to effectively get two type parameters out of a single ...
0
votes
4answers
177 views

Generics Node declaration

Microsoft gives this as an Bubble sort example for learning generics. It makes sense until I get to lines 76 and 77. How are those declarations possible? Node is a class. Don't you have to ...
5
votes
2answers
257 views

Why wouldn't C# support generics of generics (generics with parameterized types)?

Recently (perhaps of design shortcomings) I faced a regular task when required to have a collection of MyType<T> where T is not fixed (i.e. multiple various generics instantiations throughout ...
2
votes
1answer
53 views

Bounded wilcard not working for List inserted in Map

The following code explains my problem: interface f1 {} interface f2 extends f1{} 1. List<? extends f1> l1 = new ArrayList<f2>(); 2. Map<String, ? extends f1> m1 = new ...
17
votes
2answers
601 views

Java Generics Hell

I suspect this has been asked here (and answered) before, but I don't know how to name the problem. Why can I express the wildcards without problem only when I'm not passing the class itself? It ...
7
votes
1answer
598 views

Why can't nested generic types be inferred?

Given the following classes... public abstract class FooBase<TBar> where TBar : BarBase{} public abstract class BarBase{} public class Bar1 : BarBase{} public class Foo1 : FooBase<Bar1> ...
1
vote
2answers
203 views

Nested generics in Java methods?

I'm creating my own MVP framework, and I'm running into trouble with the generics. My presenter is defined like this, with an inner class holding references to child elements which are also generic ...
4
votes
3answers
392 views

how to declare Class.class with valid generics

Note: purely out of curiosity and not for any actual use case. I'm wondering if there is a way to declare the Class Class object with valid type parameters: Class cc1 = Class.class; //raw type ...
0
votes
2answers
83 views

how to specify nested generics in eclipse

I want to specify this type: Map<String,Map<String,String>> blah = null; But Eclipse refuses this. I am not sure if it is Eclipse or the Java parser. I had similar issues when trying ...
2
votes
4answers
182 views

How do I get this system of nested generic parameters working?

So I'm trying to get a reasonably complicated system working. Here's the basics of what I'm attempting. Rules: abstract class Rule { // stuff } class ExampleRule extends Rule { // stuff } ...
2
votes
3answers
109 views

Returning or inheriting a generic that contains a nested class

I am noticing some extremely strange behaviour when using a class layout that looks like this: // Contents of assembly A: public class MyParentClass { public class NestedClass { } } // ...
7
votes
3answers
319 views

Please help me understand polymorphism when using generics in c#

I am having a problem understanding how polymorphism works when using generics. As an example, I have defined the following program: public interface IMyInterface { void MyMethod(); } public ...
5
votes
4answers
266 views

What do nested generics in C# mean?

A bit of a basic question, but one that seems to stump me, nonetheless. Given a "nested generic": IEnumerable<KeyValuePair<TKey, TValue>> Is this stating that IEnumerable can have ...
4
votes
2answers
861 views

Generic tree, self bounded-generics

I am to adding genericity to one of my projects. I love generics as this makes my code more robust, self-documented and erases all those ugly casts. However, I came across a tough case and have some ...
3
votes
1answer
413 views

Passing a reference to a TObjectDictionary<TKey, TValue>.TValueEnumerator

I am trying to use Delphi 2010's TObjectDictionary generic. I would like to pass an enumerator of the Values property of that generic class, and the compiler doesn't seem to want to let me... ...
1
vote
1answer
147 views

Generic Visibility of inner classes?

I have a code piece that looks something like what I've pasted below: import java.util.LinkedHashMap; import java.util.Map; public class GenericMagic { GenericMagic() { } private class ...
1
vote
5answers
2k views

Java: Nested generics?

Can Java nest generics? The following is giving me an error in Eclipse: ArrayList<ArrayList<Integer>> numSetSet = ArrayList<ArrayList<Integer>>(); The error is: Syntax ...