0
votes
4answers
48 views
How to convert list of derived class objects to list of base class objects
when we can inherit from base class / interface, why can't we declare a List<>
using same classes / interface
interface A
{ }
class B : A
{ }
class C : B
{ }
class Test
…
1
vote
8answers
124 views
Java Collection filtering
I have something like this:
public class Foo {
public String id;
}
and
Vector<Foo> foos;
I need to get an object from the collection by id.
In C# I would do like this: foos.Where(o …
2
votes
3answers
54 views
Is there an elegant way to remove nulls while transforming a Collection using Google Collections?
I have a question about simplifying some Collection handling code, when using Google Collections.
I've got a bunch of "Computer" objects, and I want to end up with a Collection of their "resource …
32
votes
11answers
1k views
Is the Scala 2.8 collections library a case of “the longest suicide note in history” ?
First note the inflammatory subject title is a quotation made about the manifesto of a UK political party in the early 1980s. This question is subjective but it is a genuine question, I've made it CW …
0
votes
1answer
26 views
NHibernate: Parent list properties and related child properties are not synchronized
I have two related objects: ProgramSession and ProgramTask, with a one-to-many relationship. A ProgramSession has many ProgramTasks. So the objects looks like this:
public class ProgramSession
{
…
0
votes
3answers
67 views
Why do several java.util.List methods not use the type parameter? [closed]
Possible Duplicate:
What are the reasons why Map.get(Object key) is not (fully) generic
This is similar to the question here, on java.util.Map. This question is left as a pointer to that …
2
votes
3answers
58 views
The same property name but different return type in a generic list
Beginner's question: How to implement a generic list List<Item> returning items with a property named Data but returning different types for different subclasses? I started building the …
3
votes
3answers
79 views
When should I use Scala’s Array instead of one of the other collections?
This is more a question of style and preference but here goes: when should I use scala.Array? I use List all the time and occasionally run into Seq, Map and the like, but I've never used nor seen …
0
votes
0answers
42 views
Why is flatten declared on GenericTraversableTemplate and not TraversableLike?
The signature of TraversableLike.flatMap is as follows:
def flatMap[B, Th](f : (A) => Traversable[B])(implicit bf : CanBuildFrom[Repr, B, Th]) : Th
The signature of …
-2
votes
4answers
127 views
Difference between Java Collection and Collections
Hello, all!
I just want to know what the actual difference between Java Collection and Collections is.
Thanks in advance!
0
votes
3answers
28 views
customising serialisation of java collections using xstream
I have an object that needs to be serialised as XML, which contains the following field:
List<String> tags = new List<String>();
XStream serialises it just fine (after some aliases) …
3
votes
6answers
196 views
Is List<List<String>> an instance of Collection<Collection<T>>?
I wrote this handy, generic function for converting a collection of collections into a single set:
public static <T> Set<T> makeSet(Collection<Collection<T>> a_collection) {
…
1
vote
2answers
22 views
Handling collection properties in a class and NHibernate entities
I was wondering what is the recommended way to expose a collection within a class and if it is any different from the way of doing that same thing when working with NHibernate entities.
Let me …
7
votes
1answer
70 views
Explain synchronization of collections when iterators are used?
I understand that collections like the Hashtable are synchronized, but can someone explain to me how it works, and at what point(s) access is restricted to concurrent calls? For example, let's say I …
0
votes
3answers
47 views
Binding to a Model that Contains a Collection/List
Hello,
I'm building a simple financial record-keeping application. The main window view model holds a list of Accounts. The view shows this list (in a ListView) along with a panel showing details …
