Collections API's provide developers with a set of classes and interfaces that makes it easier to handle collections of objects.

learn more… | top users | synonyms (1)

1
vote
0answers
19 views

WCF returns ArrayOfKeyValueOfintstringKeyValueOfintstring[] instead of Dictionary<int, string> and Array instread of List

So I've spent the last several hours investigating this issue and it is clear that I am not the only one. Why are my Dictionaries and Lists being returned as Arrays? I understand that Arrays are ...
0
votes
2answers
42 views

How can I use map in this kind of situation in grails?

I need to display server info that are running up on ec2. I have managed to display them as a json, but now i only need to display certain fields. The following shows how I am displaying the ...
3
votes
1answer
42 views

Typesafe map-reduce in Java

How to write a type-safe mapper/transformer of collections? class Bean { public int value; } List<Bean> beans = .. List<Integer> ints = Lib.map(beans, b => b.value); Using Apache ...
0
votes
1answer
11 views

Order of elements in MultiKeyMap

Recently i started using apache commons MultiKeyMap for some of my projects and in there i can have multiple values for a value. MultiKeyMap typePanelUnoMap = new MultiKeyMap(); Here i want to know ...
1
vote
4answers
74 views

What is the alternative to Comparator<T> when using composition over inheritance?

While refactoring a Java project to use composition and no inheritance, I have remaining a problem where polymorphic sorting of Collections was performed. Inheritance example: public class AClass { ...
0
votes
0answers
21 views

vba error 424 with Collection of Objects

I am working on building and referencing a collection of custom Objects. The class is called CProject, and have two properties of Name and RefNum. The code to create and reference looks like this: ...
0
votes
1answer
20 views

Java mahout colt collections

under this link, we can see several versions of old colt libraries. I'm wondering what library mahout statistical users use today? I need it for a big data project. Please help. mahouters :) I need to ...
-4
votes
0answers
47 views

Need Explanation of Collection<E> [closed]

Can someone explain to me what is Collection<E> with a few examples ? I find it hard to understand in the java docs. I also have a difficulty understanding these <> and what's E
3
votes
3answers
47 views

Optimization done by an EnumMap/EnumSet

I recently read an article about EnumMap. It's written that "using EnumMap brings implementation specific benefits which is done for enum keys, In short EnumMap is optimized Map implementation ...
0
votes
1answer
51 views

Modifying a PHP collection

For a wordpress website I'm developing, I'm making a dynamic menu that users can make using the admin menu. Hooking into that is only the least of my problems. The code I'm using returns these ...
3
votes
3answers
36 views

Changing reference for one object and it changes for all in the collection

I have created class Person which is member of class Account and then there is class Bank which contains vector of Accounts. I have created one Person who ownes 3 Accounts then I wanted to ...
2
votes
5answers
53 views

Using a collection reference as an if statement condition without a comparison?

I'm a little embarrassed to be asking this because I'm sure this is a very basic question but having searched and thought about it I still can't work this out. The code is from a class the tutor ...
2
votes
3answers
70 views

How to convert hashmap to Array of entries [duplicate]

I have a map private HashMap<Character, Integer> map; I want to convert it to array but when I do that/I get this: Entry<Character, Integer> t = map.entrySet().toArray(); **Type ...
-3
votes
3answers
42 views

Is that possible to sort HashMap by Arrays.sort [closed]

I would like to sort an array using Arrays.sort. I know that it should be done by Collections.sort but the teacher wanted use of Arrays.sort is that possible? I would like to pass comparator.
1
vote
2answers
50 views

why is Hashtable not a part of Java Collection framework? [closed]

I usually work in non multi threaded environment so usually go for HashMap instead of Hashtable. I know the difference between both and I also know Hashtbale was introduced way before Java Collection ...
1
vote
1answer
26 views

How do I convert this piece of XML into a javascript collection?

I'd like to convert XML that looks like this: <products> <product> <Name>Bill</Name> <ID>1</ID> <Age>19</Age> </product> ...
-2
votes
1answer
22 views

Can I somehow iterate through collection with definite initial and end index using standard JSTL? Or should I create a custom jstl tag? [closed]

I need to create a pagination on jsp page for a list of objects, so I need to iterate only through a range of indexes.
0
votes
8answers
79 views

Java/ Remove a Integer value from a list [duplicate]

I have the following lists of Integer whatToRemove = {2, 3, 8}; and another list lst = {4, 6, 8} I want to remove all whatToRemove the elements from lst. I am trying to use ...
1
vote
2answers
28 views

AutoMapper and interface typed collections

I'm new to AutoMapper. Sorry if this is too simple. This is my sample domain: I have a Basket. It contains a list of Food. Food is either Banana or Pickle. I have DTOs that mirror each class in the ...
0
votes
2answers
18 views

Collections.sort between Directories and Files

I am using Arraylist of strings: ArrayList entries = new ArrayList(Arrays.asList("")); and giving values dynamically. It may contain the names of Directories or Files. I need to show entries in ...
0
votes
3answers
82 views

Lightweight Map implementation Java (little memory overhead)

I am currently writing some code in java meant to be a little framework for a project which revolves around a database with some billions of entries. I want to keep it high-level and the data ...
0
votes
1answer
90 views

List contains one object why?

I have a problem where an object containing a list property holds 1 item, which it shouldn't (it should be empty). The Station class contains a list of edges (List Edges). The Edge class have a ...
1
vote
2answers
89 views

Distinct Last By

I am searching for a solution with good performance of the following distinctLastBy method: import scala.language.higherKinds implicit final class SeqPimp[A, S[A] <: Seq[A]](val s: S[A]) extends ...
-1
votes
2answers
38 views

What kind of collection to use in grails controller?

I have data being pulled out from the web. I have managed to put the fields I need in variables. How would I put them in a collection? Should I use expandos? I do not have model class. I am thinking ...
-3
votes
2answers
31 views

purpose of static and void for one of Collections methods

What is the purpose of static and void in this context : public static <T> void sort (List<T> list, Comparator<? super T> c){}
4
votes
1answer
74 views

Searching in two collections

I have two collections. A collection of BindingSource and a collection of DataSet. Now I try the corresponding data types of the BindingSource collection to found in the table types of the DataSet ...
1
vote
2answers
24 views

VB.NET: Writing a function that take specific-type, multiple key-value parameters

I'm trying to write a function in a basic MVC (experimental project) that should be called with the following (or as close to): datastore = myTable.FetchData({{column1, constraint1}, ...
1
vote
0answers
22 views

Unlimited/Dynamic ViewPager in both directions

There is one use-case of ViewPager I've never seen pretty implemented. ViewPager is more or less static structure. It's not so hard to add Pages to the right side (appending to Model and displaying ...
0
votes
1answer
52 views

Returning Object That Has Biggest Value using comparator

Suppose we have a Java type called Contract which represents business contracts. Among the method headers in class Contract are the following: public Date finish() returns an object representing ...
2
votes
2answers
52 views

How can I convert Scala Map to Java Map with scala.Float to java.Float k/v conversion

I would like to be able to perform the following, but it fails in the call to useMap. How can I perform this conversion? scala> import scala.collection.JavaConversions._ import ...
1
vote
1answer
63 views

Order By vs Sort for creating ordered collection

I have been through this article C# Sort and OrderBy comparison But the answer accepted in this question is obscure to me. I can't decide when I should use Sort or when I should use OrderBy. Is ...
0
votes
0answers
10 views

How to convert an object into a databtable?

I am developing a web service having web methods which invokes COM methods internally. One of the Web method is to Get list of all users. The underlying COM method is having a return type as "object". ...
0
votes
2answers
61 views

process bunch of string effective

I need to read some data from a file in chuck of 128M, and then for each line, I will do some processing, naive way to do is using split to convert the string into collection of lines and then process ...
1
vote
1answer
29 views

How to get the value from the list with in the object

I am calling a service, service is returning an object that contains a list. in this list number of elements are there like list[0],list1,etc... Now i am trying to get value from the list, but it is ...
0
votes
3answers
53 views

How to call a method from of a property using Reflection

I'm using nhibernate in a application and I have a mapped model with some relations. Theses relations are mapping with List<T> and I need to pass a entity to a method and call the Any() method ...
1
vote
2answers
43 views

Sorting with respect to other items - Comparison method violates its general contract

I'm tyring to sort an array of items in which an item should be brought to the beginning of the array if its id equals the id of a selected item (also belonging to the array). The sorting order of the ...
0
votes
3answers
55 views

System.Linq.IOrderedEnumerable does not contain a definition for 'ToList'

Now this one has me stumped and so I would appreciate some help please. I have this code tested in .NET 4.0 application, and it works fine. However, when I move it back to my 3.5 environment, I get ...
1
vote
2answers
23 views

grouped_collection_select with particular objects

I have a grouped_collection_select with some Products (linked to a category): <%= c.grouped_collection_select :product_id, @categories, :products, :name, :id, :name, :include_blank => true ...
1
vote
1answer
21 views

EF anonymous object query returns null collections instead of empty ones

I'm using this trick to perform conditional Include's with EF. http://blogs.msdn.com/b/alexj/archive/2009/10/13/tip-37-how-to-do-a-conditional-include.aspx The problem I'm having is that any ...
0
votes
5answers
60 views

Collections list and dictionary

I have a list that contains roleids and a dictionary that has database of roleids and menus accessible to that roleid. Suppose a user has role 1,2,3 then how do I retrieve the distinct menus he can ...
0
votes
0answers
13 views

explicitly setting the interval for distributed GCs does not seem to work

I have been trying to control the interval between Full GCs triggered by RMI when using JMX (known as distributed GCs). Specifically, I start my java platform like this: java ...
1
vote
4answers
48 views

Need clarification on addAll methods behaviour

Hi i am using addAll method of Collection framework. Please find below my code. It is working fine for code 1. For code 2 it is giving me compilation error. I dont know why it didnt give me error for ...
0
votes
0answers
17 views

Serialize a treemap into arraylist with gson

I have the following chunk of code: Type listOfItems = new TypeToken<ArrayList<Dates>>(){}.getType(); ArrayList<Dates> mContents = new ArrayList<Dates>(); public String ...
0
votes
0answers
14 views

Magento 1.7: Where to place to a global filter on product collection?

In my case I want to add a global filter, affecting all product collections. At the moment I filter inside a rewritten 'Mage_Catalog_Block_Product_List' (getCollection) resulting in different outputs ...
0
votes
2answers
22 views

Backbone Collection filter method

Can someone explain the mechanics behind the filter() method that exists within the Collection "class"? The Backbone API for this method appears inconsistent with the following example implementation ...
0
votes
2answers
71 views

Creating,using and comparing elements within a button collection

I'm making a Tic-tac-toe project, and I'm having some difficulties. I've only gotten a loose grip about collections, so you can see the problem. Thing is, I created 9 buttons which change their ...
0
votes
0answers
22 views

interpretation of java GC log files [closed]

Just wondering if anyone knows a good source of information on how to interpret GC log files? I have seen bits and pieces around but I keep seeing some new things (i.e. DefNew) that I can't figure ...
1
vote
2answers
27 views

Backbone sort method

I have the following code : Campaign.Collection = Backbone.Collection.extend({initialize: function() { }, comparator: function(item) { return item.get('Name'); } } I call collection.sort() and ...
0
votes
1answer
35 views

Programmatically Changing the Default Collection for WCF Proxy Class

I have an application where users will connect to one or more WCF services running on machines in their network. Because the address of these connections are not known at the time of installation, the ...
0
votes
1answer
23 views

sort List<CrExcessMaster> by opendate property in bean class

My method is public FilteredUIExcessList getCustomerExcesses(Long cif,String primaryCO) throws Exception { if (cif != null && !cif.equals(0L)) { List<CrExcessMaster> ...

1 2 3 4 5 147