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)

0
votes
1answer
11 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
73 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
87 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
81 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
35 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
22 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
51 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
50 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
60 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
59 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
51 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
41 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
51 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 ...
0
votes
2answers
20 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
20 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
47 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
16 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
10 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
58 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> ...
4
votes
2answers
73 views

Generic class accepts primitive type and string

How do i create a generic type which accepts only a type of Integer, Long and String. I know we can restrict a type for a single class or by implementing an interface with below code public class ...
0
votes
0answers
11 views

Spring Merge List (Prepend not Append)

<bean id="parent" class="org.springframework.beans.factory.config.ListFactoryBean"> <property name="sourceList"> <list> <value>X</value> ...
0
votes
1answer
32 views

can't catch Backbone Collection reset event

I've stumbled across something quite strange I'm fetching a collection, and listening on the reset event, but somehow the event is lost I have this minimal example: $(function() { var collection ...
1
vote
4answers
62 views

Representing data in array or collection to iterate

Very basic question... I have records | fname | lname | designation | comment | | a | aa | aaa | aaaa | | b | bb | bbb | bbbb | | c | cc | ccc | ...
-4
votes
3answers
57 views

Best way to total distinct values of a Bean inside of an ArrayList? [closed]

I have an ArrayList of a Bean. Inside the bean are two properties "String monthYear" and "double bill" I need to add and get the total bill based on the monthYear. For Example based from the code ...
0
votes
1answer
28 views

Getting data from a Magento Collection

I have a collection that has one row of data in it. If I do following, $collection->getData(); it give me an array like below, array(1) { [0] => array(3) { ["id"] => ...
1
vote
1answer
17 views

backbone.js iterate a collection

I have set up a collection for Logs. The api returns the results as JSON. I saw a previous topic where it was suggested to add the parse method on the collection. Having done so, when I execute the ...
2
votes
1answer
36 views

Create a list of objects by grouping on multiple properties

I have a List<T> where T is a custom object Cow. Right now I use the following code to split that list up based on Color. cowGroups = from x in cows group x by x.Color into y ...
1
vote
2answers
47 views

data structure to search for a word in a phrase

(I'm developing with android sdk, but maybe it's not important) I read from a file several phrase and save them in a collection. eg.: "hello world", "you say hello", "big world" I want to make ...
2
votes
3answers
70 views

Is there an easier way to collect strings from a collection of objects?

I have a collection of Ingredient objects for which I'd like get all their names (via getName()) and join them into a comma-delimited string. Currently my code looks like this: public static String ...
0
votes
0answers
24 views

How to edit elements in a collection from another window or Dialog

I have a number of collection bound to the application main window controls shown in a simplified form below. There are a number of other elements in the view model (Ommited for Clarity) which all ...
0
votes
1answer
47 views

Lightweight collection w/ Set contract

I'm developing in an application requiring lots of objects in memory. One of the largest structures is of the type Map<String,Set<OwnObject>> (with Set as HashSet) with OwnObject being ...
0
votes
0answers
20 views

Getting formatted results from magento collections - getCollection()

I am having a method _prepareCollection() which gets all data from the standingorders table where standingorder status = 1 . THe following is the method: protected function _prepareCollection() ...
0
votes
1answer
63 views

cast List to ArrayList [duplicate]

When I want to cast the ArrayList object in List reference that returned from the method: public static <T> List<T> asList(T... a) { return new ArrayList<>(a); } The return ...
0
votes
0answers
7 views

How can I fix C2039 'emplace' is not a member of 'std::vector(_Ty)'?

C2039 'emplace' is not a member of 'std::vector(_Ty)' I encountered this error in collection.h which I have never even touched! Here is this code snippet the error leads me to: virtual void ...
0
votes
0answers
16 views

Mongokit no collection found error

I'm trying to save an object to mongodb with Mongokit. For some reason I am getting a "Connection Error: no collection found", only for this particular class model, Game. I have defined the ...
2
votes
3answers
83 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 ...
0
votes
3answers
35 views

Ruby partially retrieve large amount of records and iterate over them

I'm newbie in Ruby but I have a lot of experience in other programming languages. I need to iterate over large amount of records (from db or any persistent storage). Storage engine allows me to ...
0
votes
5answers
82 views

How add or remove object while iterating Collection in C#

I am trying to remove object while I am iterating through Collection. But I am getting exception. How can I achieve this? Here is my code : foreach (var gem in gems) { gem.Value.Update(gameTime); ...

1 2 3 4 5 146