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
0answers
18 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 ...
1
vote
3answers
84 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
37 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
93 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
vote
1answer
59 views

Magento Collections - Resulting SQL Queries and How To Specify INNER/OUTER Joins

As a relatively new user of Magento and an even newer user of SQL, this question could be a dumb one. I'm simply having a very hard time formulating an SQL query with the Magento API. The query I'm ...
1
vote
2answers
66 views

Unable to cast Generic List to Custom List type

I have a two classes: public class MyClass { public int Foo { get; set; } public string Bar { get; set; } } public class MyList : List<MyClass> { } In other code, I am creating ...
0
votes
0answers
31 views

Set and Set Operations in Javascript

I'm looking for Set and Set operations in Javascript for intersection, union and difference instead of having to write them manually. Here's equivalent Java code: Set<Integer> toMerged = ...
0
votes
1answer
34 views

SQL Server Collation for Greek, chinese, japanese

I've got this multilanguage website that supports greek, chinese and japanese. When I insert values into the database I get question marks all over. My columns are in ntext and my current collation ...
0
votes
1answer
83 views

Entity Framework save changes to context causing error

I am trying to save changes to my context which has two items. One is new, the other is old. I am able to get the list of objects back and save a single item with no issues, however the moment I have ...
3
votes
6answers
79 views

Collection that will maintain insertion order and no duplicates [duplicate]

In Java collection which collection will doesn't allow duplicates and which also preserve insertion order of data?
0
votes
1answer
85 views

How to store values from excel to some collection in java [closed]

i have a excel file like the following, **Method Name** **Status Code** **user** **password** getLoggedinUserDetails 400 anto test createRequisition ...
0
votes
1answer
23 views

How to test nested collections with FluentAssertions

I have the following spec BidirectionalGraph Fixture = new BidirectionalGraph(); public void VerticesShouldBeAbleToAssociateMultipleEdges() { int a = 0; int b = 1; int c = 2; ...
-3
votes
1answer
63 views

Collections.unmodifiableList wraps already unmodifiable list? [closed]

In Collections.unmodifiableList implementation I see that it always wraps the given list with UnmodifiableList even if the given list is already UnmodifiableList... So if i'm calling this method over ...
1
vote
3answers
86 views

ArrayList of ArrayList of ints in Java?

I am working on writing a sudoku solver and I want the grid to be stored as an arraylist of arraylist of ints...each spot will have an arraylist of ints of all possible numbers (or the definite ...
0
votes
0answers
14 views

Cannot submit collection for review

I've build collection for each action, which are already approved. But despite submitting with Open Graph Test User multiple actions (8 and more) I still get error: Submit Your Collection: Please ...
0
votes
4answers
45 views

Which collection is suitable for tel number + name pair in Java?

I am trying to add to a collection the following pairs 698xxxxxxx - personA 698xxxxxxx - personB 699xxxxxxx - personA 699xxxxxxx - personB I go through alot of files and try to add ...
1
vote
4answers
117 views

Best searchable collection strategy for performance?

I've got a collection of objects with the following interface: public IEntity { public string Key1 { get; set; } public string Key2 { get; set; } ... some other properties } and am ...
0
votes
0answers
26 views

Explanation for Fancy Uses of Collection Views: Map Algebra- manager employee map - in java tutorial map interface

In the following example given in the java tutorial, I understand the first bit about the individual contributors. What I am confused about is how the next few requirements (e.g firing the employees ...
0
votes
1answer
65 views

How can I create and Empty Map and set the default value

I wanna create an empty map in java and then the default value to 0. Please let me know if below code is correct. Actually, I'm having a python code which I'm trying to convert into Java. For the ...
-6
votes
0answers
24 views

List conversion for apache poi [closed]

I'm new to Apache POI. and I'm trying to export List< EmployeeInfo > into an Excel file. This List contains emp name, id, address, etc. What are my options to convert Employee List and ...
1
vote
1answer
55 views

How To Use Magento Collections to Run Query, Get Results, and Print Them

I am fairly new to programming, php, Magento, and most of all, SQL. Please forgive me if this is somehow a dumb question. I am trying to use Magento collections to select two different columns in two ...
0
votes
3answers
34 views

Which Collection framework to sort Objects

Here is a class Class Emp { String firstName; String lastName; int sal; ----------- } here I have a list of 100 employees, I want to sort the objects based on salary and ...
1
vote
1answer
76 views

How efficiently can we store all tree nodes into HashMap?

We are trying to store all of tree nodes into a HashMap in a linear fashion (traversing node after node) and running into memory issues(OutOfMemoryError: Java heap space) with max memory set to 90mb ...
0
votes
2answers
42 views

TreeSet / Contains method

As an exercise, I try to implement my own TreeSet. Before coding the add and remove methods, I prefer start by contains which seems more easy but I'm stuck. My Tree is composed with Node and Leaf : ...
1
vote
1answer
97 views

Java: Most efficient way to keep a collection in Java?

Currently, I have a LinkedList which stores a custom Node class. The Nodes are currently removed in order and evaluated, which generally adds more Nodes back into the LinkedList, treating it like a ...
0
votes
2answers
25 views

Working with couples on the List, ignoring order… some elegant way?

I have a list of elements (in java), let's say: List<Integer> elem = new ArrayList<>(); elem.add(1); elem.add(2); elem.add(3); elem.add(4); I want to iterate over each unique couple ...
0
votes
2answers
58 views

c# sort a list by a column alphabetically

I have a class defined and I write records to this class to a List. Having trouble sorting the list before I write an error report. I'm trying to sort the list alphabetically by the 'finderror' type ...
0
votes
1answer
65 views

Comparing an Arraylist to a String

I am trying to compare a string which the user enters in case 3 in the ProcessRecords class. I am then trying to compare that string to each last name in the Arraylist and if a record matches the ...
0
votes
1answer
60 views

Synchronizing ArrayList for multiple users concurrently

I am new to concurrency. I want to make sure that multiple clients can access and change the books ArrayList in a thread safe manor. Is the following correct? I am trying to use a simple ...
1
vote
2answers
61 views

ArgumentException not found in Dictionary ContainsKey check

I have code like this: if (!likeDict.ContainsKey(s)) { likeDict.Add(s, s); } And I keep getting an error that an item with the same key has already been added. I thought ContainsKey is the ...
1
vote
2answers
42 views

Create counting class extending Hashset / Inheritance

If we consider the following class to count object added in an HashSet : public class CountingHashSet<E> extends HashSet<E> { public int addCount = 0; @Override public ...
-1
votes
3answers
61 views

How to use Collections.sort() in JAVA ? (Specific situation)

so I've been searching here on StackOverflow for the last few hours on how to do this thing with Collections.sort() on JAVA. I saw a lot of posts about this topic, but none of them had what I need. ...
0
votes
1answer
49 views

How to make a Map string as keys and functions as values in scala?

What I would like to do is something like this : val myMap: Map[String, => String] = Map( "name1" -> {//functions that does stuff to generate some string}, "name2" -> {//functions that ...
1
vote
3answers
55 views

Using reflection and a List<>, can one return an array of specific properties via an extension method?

I'm not certain of the terminology so forgive my lack of clarity: Given a List<someclass> collection, can one create an extension method utilizing refection that allows one to return an array of ...
0
votes
2answers
84 views

Querying through an Arraylist

I am building a program to read a .txt file and extract the student data and store it in a collection. Then the user is supposed to be able to select several different queries. The query that I am ...
0
votes
2answers
121 views

How to set attribute (id) at collection fieldset (doctrine 2, zend framework 2)

is it possible to set an id at a fieldset that's made by a collection? I've a couple of entities (user, addresses, attachments etc.), and in my user-entity i've several fieldsets that are made with a ...
-2
votes
1answer
67 views

Need guidance using TPL Tasks in best way [closed]

I am doing multithreading using TPL Tasks first time. This is what i have done so far and I want to do it the right way. I will really appreciate if you could honor me with your expert advice. I ...
0
votes
0answers
24 views

Is there a way to know the “Model name” that was used to get the “Collection” in Magento?

In pager.phtml in Magento, the data can be coming from many different sources. Example: pager.phtml is used to get the reviews, tags, products, etc. In pager.phtml, the count of items shows as ...
3
votes
3answers
81 views

Difference between sorted and sortBy

According to doc for List def sorted[B >: A](implicit ord: math.Ordering[B]): List[A] Sorts this list according to an Ordering. def sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): ...
0
votes
1answer
48 views

Difference between ::: and ++ [duplicate]

For a scala list, what is the difference between ::: and ++ From doc ::: Adds an element at the beginning of this list. ++ Returns a new list containing the elements from the left hand ...
0
votes
4answers
64 views

Calling & Searching through an Arraylist in a different class

I am building a program to read a .txt file and extract the student data and store it in a collection. Then the user is supposed to be able to select several different queries. The query that I am ...
0
votes
2answers
77 views

Version 2.0 (adding Queries now)

I am writing a program that will read a file and extract the data for each student. I did this successfully with a while loop and input.next(). However, I need to pass the variables into a collection ...
0
votes
1answer
49 views

C# ConcurrentDictionary - Best practice and method for wildcard key search

I have a ConcurrentDictionary of string (key) and object (value). I want to have an if statement that returns true if any key in my dictionary contains the sub-string 'xyz'. Better yet, if it begins ...
0
votes
0answers
78 views

Efficient way to cache elements in a Collection

I am trying to figure out the best way to cache and retrieve individual elements in a collection. The code below illustrates how I am able to cache the list itself successfully. But when it comes to ...
0
votes
3answers
108 views

list.add not working with ArrayList

I am trying to add integers from a file into an ArrayList and list.add doesn't want to work. I've only tried about a thousand different ways to write this code. The list.add(s.next()); line gives an ...
-2
votes
1answer
17 views

Issue to Append two list

I have 2 List like Class A{ int rollno{get;set;} string Name {get;set;} } List<A> a=new List<A>(); List<A> b=new List<A>(); After lot of research i am notable to ...
4
votes
2answers
383 views

How can I add cross product based methods to scala collections?

hopefully this will be a simple question about library pimping (because other questions on that subject tend to generate answers beyond my current skill level). All I want to do is map over the cross ...
0
votes
1answer
51 views

How to initialize a static SparseArray

How can I initialize a static, unmodifiable instance of android.util.SparseArray?
-2
votes
2answers
50 views

nested List Compare Equals

I have this C# class public class EntryClass { public string Field { get; set; } public List<FieldKeyValuePair<string, string>> FieldKeyValPairs { get; set; } ...
0
votes
1answer
30 views

Rails: Add user to project's users collection

I've got project and user models with belongs_and_has_many in them. Now I need add specific user into project's collection. I've got method in projects controller: def addfriend @project = ...

1 2 3 4 5 147