3
votes
1answer
79 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{ ...
2
votes
2answers
53 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 ...
1
vote
1answer
85 views

Pass concrete object type as parameter for generic method

I have an API using generic method as follow public static class DataProvider { public static Boolean DeleteDataObject<T>(Guid uid, IDbConnection dbConnection) { // Do something ...
1
vote
1answer
109 views

Understanding this function that returns Type object

I got a cool method here to check if a type is derived from another. While I was refactoring the code I got this chunk GetBlah. public static bool IsOf(this Type child, Type parent) { var ...
1
vote
2answers
44 views

Cast boxed object to typeof(object)

I have the following POCO classes public interface IObject { Guid Uid { get; set; } } public class Boo : IObject { public Guid Uid { get; set; } public String Name { get; set; } } ...
1
vote
4answers
75 views

Subclasses of generic types in Java

When I have for example an interface Drivable and a class Car which implements that interface. If I make a class with generic type Garage<T extends Drivable>, is it possible to make a new ...
0
votes
3answers
51 views

Creating a generic class, with type parameter limited to a certain superclass

I'm trying to create a "CRUD manager" class, performing database operations of objects that extend an abstract superclass I created. The abstract class is fairly simple: public abstract class ...
1
vote
4answers
71 views

Can I be more specific in passing in a 2-dimensional array where one dimension is a string but the other a “generic”

My function prototype: private String buildParamaters(Object[][] arguments) This method builds up an URL. An example value of arguments might be: List<String> items = ... new Object[][] ...
2
votes
3answers
113 views

How could I declare list of generics with different and unknown types and How could I initialize a generic with a type only known at runtime?

This is a 2 part question. Firstly I have a class called ComponentList that looks like this: public class ComponentList<T> : List<T> where T : Component { } Now I want to create an ...
4
votes
1answer
41 views

Check if two generic types are equal

I need to find if a type is a certain generic type. class MyType<T> {} var instance = new MyType<int>(); var type = instance.GetType(); This check does not work, but this is what I want ...
4
votes
2answers
244 views

Generic getter method for tuples in Scala which preserves dynamic type?

I am hoping to write a Scala method which takes in a tuple of any size and type along with an index, and returns the element in the tuple at that index. I know how to do everything but preserve the ...
2
votes
1answer
110 views

F-Bound Polymorphism with Abstract Types instead of Parameter Types?

How do I convert the following F-Bound Polymorphism to code using Abstract Types? trait Organism[Self <: Organism[Self]] { self: Self => def reproduceWith(org:Self):Boolean } class Amoeba ...
-1
votes
0answers
20 views

Resolving type-bound procedures depending on the data type of the argument [closed]

The solution: Solution is to have a generic type-bound procedure within the type-bound procedure part type, public :: Ellipse type(GCenter) :: centr ! Center coordinate of ellipse type(GCorner) ...
6
votes
1answer
101 views

Java generics: how to get a generic type from a method?

Although my question is about Java generics, I've put some JPA related code to show you the real context. I'm working with JPA 2.0 and Criteria API based queries. All my queries follow the same ...
2
votes
3answers
96 views

C# pass class as string and cast it from array

I have few nested classes like "BlueprintsManager.WorkingStandardBlueprint", and ArrayList that have instances of them. I would like to pass them to a method as a parameter, eg: private void ...
8
votes
1answer
252 views

Are MakeGenericType / generic types garbage collected?

It is well known in .NET that types are not garbage collected, which means that if you're playing around with f.ex. Reflection.Emit, you have to be careful to unload AppDomains and so on... At least ...
1
vote
1answer
71 views

Trait allowing subtype in method signature

How do I enforce subtype in a method defined in the inherited trait? What do I place in the ??? below trait Organism { def reproduce(org:???):Bool } class Amoeba extends Organism { def ...
5
votes
2answers
149 views

Scala: Ordering contravariance

Is there any reason why Scala's Ordering trait is not contravariant? A motivating example follows. Suppose I want to perform an ordered insert. I may have a function with the signature def insert[A, ...
0
votes
6answers
99 views

What's wrong with using non-parameterized generic types in Java 7?

What if I want to have a variable, say a List, which can be instantiated with any Type? So, given: List list; I could do any of these: list = new ArrayList<String>(); list = new ...
1
vote
2answers
52 views

Generic types in an array for a tree with more than one child

I am trying to implement a tree with more than one child and I need to store these children somehow. I decided I could use a LinkedList but I want to try and use an array first. (Please I do not want ...
4
votes
2answers
74 views

Access static method from GenericClass<T> where T is given by a Type instance

I have a generic class with a static method, that method using the type parameter: GenericClass<T> { public static void Method() { //takes info from typeof(T) } } Now, I ...
1
vote
1answer
73 views

this.type as a constructor argument

Following on somewhat from this question Why cannot this.type be used for new instances . I want to have a this.type object in a constructor. I don't believe that this can be done, however I am ...
2
votes
4answers
170 views

Java Generic Type Inference Strange Behavior?

Can someone explain this behaviour to me: Note: That T is never used in SomeThingGeneric public static class SomeThingGeneric<T> { public List<String> getSomeList() { ...
3
votes
2answers
41 views

An interface has two type parameters. Can I implement the interface with the two types being the same, such that they are then compatible?

This is an existing interface: public interface MyInterface<T, U> { public T foo(U u); } I want to implement this interface under the assumption that T and U are the same type. I thought ...
3
votes
3answers
79 views

semantically represent generics

I am trying to understand generics in a semantic way. For instance, abstract classes seemed to snap into place for me when I read people refer to them as structures that can set policy. Interfaces ...
1
vote
1answer
96 views

Comparing generic types Java

I have a problem with comparing generic types. In C# i I've always done something like that: class Element<T, V> where T : IComparable<T>. My question is how can it be written in java? ...
0
votes
3answers
76 views

java generics: runtime type-checking to determine a strategy

how may I select a different method based upon a Generic type? Simply I have a class parametrized with a generic type and I have to select the correct PreparedStatement setter according to the T ...
8
votes
2answers
111 views

Uses for the strange-looking explicit type argument declaration syntax in Java

I recently came upon the strange syntax for explicitly declaring generic types when calling Java methods. For example: Collections.<String>emptyList(); returns an empty List<String>. ...
1
vote
2answers
152 views

Is there a syntax does a reversed type inference?

When I tried to answer the question: Is it possible to get rid of the TClient generic type in the Service class I found a strange usage that I've never designed something of this kind of ...
1
vote
3answers
216 views

Why does the following code not compile?

I can't understand why the following code doesn't compile: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ...
0
votes
1answer
54 views

Reuse Scala type as bounds in method definition

Is it possible to write something like this and reuse the HelperTest.AnyHelper type? class HelperUtil { /* this is what I would like to write... reuse the AnyHelper type in the definition */ ...
1
vote
2answers
112 views

Is it possible to get rid of the TClient generic type in the Service class

For WCF clients, I have a IServiceProxyFactory interface to set credentials. public interface IServiceProxyFactory<T> { T GetServiceProxy(); } public class ServiceProxy1 : ...
2
votes
3answers
74 views

Casting a generic instance to a non generic one

I have a class defined as following: class ProxyWithSetter<T> : ProxyValue where T : Value It has a field of the type Action<T> Setter; Say I have a list of ProxyValue instances, ...
2
votes
1answer
103 views

create List of Type using Type variable at runtime [duplicate]

I'm trying to simplify my methods in creating several variables in a function which is repeated for different types and different actions, eventually I will migrate to a single function that can ...
1
vote
3answers
37 views

Find if a class derives from another class which is generic in .NET?

I have a class like: class A<T> { } I have another class that derives from above class like: class B : A<X> { } Above X is another class. Now I can have many classes like B, and ...
1
vote
3answers
101 views

Is there a way to write generic Java methods that work with primitive array types? [duplicate]

EDIT: This question specifically regards Java primitive arrays. There are other questions that address writing generic methods for primitive scalar types, but arrays are sufficiently different to ...
0
votes
1answer
22 views

Implicit Typing from external class c#

How do I get the desired code to work below: class Program { static void Main(string[] args) { List<string> strings = new List<string>(); ...
0
votes
1answer
57 views

How do I create a generic type dynamically in order to pass to generic method?

I've combed through existing questions/answers on this matter, but none of them spelled out exactly what I was looking for in a way I understood. Here is my snippet: Type t = **?** ...
0
votes
3answers
149 views

Making a generic comparator class [closed]

I'm trying to make a comparator that can take any type of an element to compare. I'm unsure about how to create the class. I just want it to compare two elements of the same type (But whatever type ...
4
votes
3answers
77 views

how do I make a generic method lock its type in java?

what I mean about that is that in C# for example I can write a generic method like this: public static void Concatenate<T> (T arg1, T arg2) { Console.WriteLine(arg1.ToString() + ...
2
votes
2answers
63 views

How to pass a type to a generic type?

I'm having some difficulties using generic types. We have a deserialize method which signature looks like this: Public Function Deserialize(Of T)(ByVal compressedData As Byte()) As T We have some ...
-2
votes
2answers
42 views

Generic class variable of a certain type

In C# I can define this: public interface BaseObject { int GetValue(); } public class Test<T> where T : BaseClass { T BaseObject; } which means I know that I can alwaysa call ...
1
vote
5answers
128 views

How to get the class of type variable in Java Generics

I've seen similar questions but they didnt help very much. For instance I've got this Generic Class: public class ContainerTest<T> { public void doSomething() { //I want here ...
1
vote
2answers
92 views

Is it possible to work with a list of generic values with different type parameters in Scala?

I want to achieve the following: There is a list of strings I need to process. There are several different kinds of these processors, each of which knows which part of the string to read. I need to ...
5
votes
1answer
142 views

Understanding Guava's TypeToken.isAssignableFrom method

I am using the Guava TypeToken class to test if instances of an arbitrary type can be assigned to objects of other type. In the following code snippet, I am testing if types declared as List are ...
0
votes
2answers
49 views

get instantiated type variable in java

I would like to check if the instantiated type of a generic class has certain properties, e.g.: class Foo<T> { void bar () { if (T instanceof Serializable) // does not compile ...
0
votes
2answers
55 views

java generic extension type error

I'm writing a generic encoder/decoder and running into an issue with an extended generic. The idea is that I want to have an abstract Encodeable class that has a "virtual" static method decode which ...
0
votes
2answers
52 views

Coordinate multiple generic constructor arguments

I'm trying to do something in Scala that I'm not sure is possible. I'd love some feedback from the community. Say I have a sealed trait for some 'thing', a few concrete extensions of it, and a ...
1
vote
1answer
110 views

invoking correct generic method using Type variable, with out and ref

static class Example { public static string Method<T>(ref List<string> p2, out string p3, string p4) { ... } public static string Method<T>(ref ...
0
votes
3answers
105 views

Pass type of current class/object to a generic method without explicit type reference in C# program? [duplicate]

Is there a short hand for the type of the current class/object that I can use when calling a generic method, instead of having to explicitly pass the name of the current class/object? For example, ...

1 2 3 4 5 9