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
75 views

core java Filemanager with index which allows us to compete the following things

help me to find out this........ How to get the list of files using core java concepts with index? for example a folder may contains the files and sub folder and the files.now the output should come ...
0
votes
1answer
106 views

Java Challenge in LinkedList

Question 4: Given an integer array, convert it into a linked list with each node containing one sequence. Sample Input : [1, 3, 4, 5, 8, 9, 11, 13, 14, 15, 16, 20, 23, 30,31,32] Sample Linked List : ...
1
vote
1answer
36 views

How can I ensure that an object only belongs to one collection, while maintaining the DRY principle?

I'm trying to solve a problem in my PHP code, but this is also something I've been unable to solve in other code as well. I have an object that must belong to one and only one collection. And I will ...
0
votes
2answers
65 views

Large static map in program memory Java

I am translating 16-bit codes from a legacy device into strings as defined by a table. There are over 2,000 codes, and the codes are not consecutive. They are currently defined in a HashMap like ...
0
votes
2answers
55 views

why getting wrong answer when using Collections.binarySearch()

public class BinarySearchCollections { public static void search(List<String> list) { list.clear(); list.add("b"); list.add("a"); list.add("c"); ...
0
votes
6answers
42 views

Storing tables in java for refrencing

So the question is regarding optimization of the code. I have a table for retirement date which im going to list below Year of Birth Full Retirement Age 1937 or ...
3
votes
2answers
75 views

Compare and check collections using LINQ

I have to compare 2 collections and check if the transactionId in the TransactionLevelCommentsCollection exists in the TransactionCommentsCollection. If exists throw an alert of the ...
-2
votes
2answers
62 views

Iterating over a generic ArrayList [closed]

I have an ArrayList of a generic type as shown below: List<abcparsepojo> xyzintrunsiveObjects = (List<abcparsepojo>)abcparseGetter.getObjects(file); How can I iterate over this ...
0
votes
1answer
31 views

Getting back specific lower bounds value from inputted key in LinkedHashMap

I have an LinkedHashMap that uses the values from a char array as its key adds integers 1 to the size of the char array as its values: hmConvert = new LinkedHashMap<Character, Integer>(); for ...
0
votes
1answer
28 views

Adding the same image object to a collection removes the image from the first added collection

When the below code runs, eitherImagePanel has one control in its Control collection and the orImagePanel has its Control collection empty. What I realized is that when I add to one collection, the ...
0
votes
4answers
65 views

Directory with datetime+string key, and automatic removal of old entries

I have an application that receives certain "events", uniquely identified by a 12 chars string and a DateTime. At each event is associated a result that is a string. I need to keep these events in ...
-3
votes
2answers
69 views

Removing All Nulls From Collections

I'm having to deal with collections of data being thrown at my application from data sources out of my control. Some of these collections contain nulls which I would prefer to filter out as soon as ...
-1
votes
0answers
18 views

WPF GroupDescriptions Issue

In my application I have to show list of compatible printers installed. I have 4 printer installed and it shows like this: If there are multiple printer with same printer type, then I group them. But ...
1
vote
1answer
91 views

Mapping a set in Hibernate with a composite primary key

For reasons related to DB replication, I need all the tables in my DB to have primary keys. Some of the entities in my application are defined like the following one: <class name="Item" ...
0
votes
1answer
74 views

C# Populating treeview from my XML file, whilst filtering it for no repeats

I have the following XML file which gets populated programatically when documents are loaded into my program. What i want to be able to do is create a treeView hierachy using the "system", ...
2
votes
4answers
49 views

Collection of interface from single object

I have class SampleClass implementing interface ISampleInterface. Method is requiring Collection<ISampleInterface> as argument, but in my code I want to pass single SampleClass object. I was ...
1
vote
2answers
58 views

Java Collections - Shuffle repeats items

Right, I'm doing a GA algorithm for a college project, but as I was doing the Crossover, I noticed my individual length was changed, when it should have been 100. I am creating an ArrayList of 100 ...
2
votes
2answers
94 views

How to store tuples of data in C#?

I would like some way to hard code information in C# as follows: 1423, General 5298, Chiro 2093, Physio 9685, Dental 3029, Optics I would like to then refer to this data as follows: "The ...
0
votes
1answer
31 views

How does magento figure out to apply the default limit

i've created a custom collection to display in the catalog which lists all newly added items now i want to fix up the page limit for this new collection to be not be 60 items per page as it is for ...
0
votes
2answers
50 views

Java specifying collection data types? [duplicate]

So I see people putting <> after declaring a collection. I know that it is used to specify which data type the collection contains. I haven't seen it used in any other cases so I was just wondering ...
-3
votes
1answer
41 views

How do you make a collection from a hash table? [closed]

I am wondering just what the generic code for making a Collection out of a Hash Table would look like. For example if I already have a Hash Table created, how would I then convert that to a ...
-1
votes
2answers
56 views

thread processing a large collection in C# [closed]

Okay, It's been a little while since I've really had to utilize a lot of threads dynamically. Basically the situation is: I have a large collection from a database query, say excessively, 1 million ...
7
votes
2answers
102 views

Java generic collection, cannot add list to list

Why does the following public class ListBox { private Random random = new Random(); private List<? extends Collection<Object>> box; public ListBox() { box = new ...
0
votes
3answers
51 views

Which collection has the Best access time to find item.Property from

I should design a solution for best performance for searching through items from that collection. The problem is: I have an type: class MyType { public int Id { get; set; } public int ...
2
votes
1answer
42 views

If the service returns JSON data, should I still use this.collection. toJSON()?

In my backbone application the REsT service always returns JSON data, so should I always use this.collection.toJSON() or can I use this.collection directly after collection fetch to bind the data to ...
0
votes
4answers
66 views

How to remove Duplicates(Old Objects) from arraylist

I have a Check Entity where I have three attributes including Id and am using the Id for hashcode inorder to use and check duplicates. Now Duplicates are getting removed using below code ...
1
vote
1answer
100 views

Binding collection to ComboBox in Listview

I have a ListView whose DataTemplate consists of a ComboBox and some TextBoxes. The ComboBox is bound to a Collection which is mapped to a CollectionViewSource. The ListView can have any number of ...
8
votes
3answers
156 views

Lost in the inheritance graph of Scala's collections

Today I wanted to learn about the supertypes of List: sealed abstract class List[+A] extends AbstractSeq[A] with LinearSeq[A] with ...
2
votes
2answers
62 views

REST hypermedia/links to collections

Part of REST best practice is to make use of links in the responses to allow clients to navigate from one entity to another. For example if I had a customer object type which has child account. If I ...
0
votes
1answer
43 views

Possible to view an MPMoviePlayerController within a UICollectionView?

I'm trying to build a UICollectionView in which each cell holds an MPMoviePlayerController with a different video. I want the user to be able to play each video in place. I know that you can't play ...
0
votes
1answer
25 views

Hashtable style collection creation using Javascript

In JavaScript I want to create a collection in following way - Start with an empty collection with var c = []; Then I want to add item in it; after addition it will look like { 'buttonSubmit': ...
3
votes
4answers
107 views

Generics with Collection

Question 1: Given: List<Object> lo = new ArrayList<Object>(); if I understand correctly, the parameter in ArrayList<>() must be Object, so do we need to write it? Or we just ...
0
votes
2answers
37 views

Modifying Output from collections.Counter using Python

I'm using the Python collections library to print out the most common character in a string and how many times it's repeated. import collections results = collections.Counter("this is fun") ...
0
votes
0answers
30 views

How to Mongodump a collection with spaces in the name

how to get a mongodump for a collection which has spaces in the name of the collection, trying to do dump of a collection with spaces in the name results in empty dump
3
votes
1answer
78 views

Upgrading VBA 6->7 causes error: If Exists in Collection

VBA6 code (Excel) worked great. Upgrade to Office 2010/VBA7, code breaks. Using code from SO: Determining whether an object is a member of a collection in VBA Public Function Contains(col As ...
1
vote
1answer
36 views

How can I get a collection of collection

I have these models: class Country(db.Model): name = db.StringProperty() code = db.StringProperty() class Course(db.Model): name = db.StringProperty() description = ...
-2
votes
4answers
71 views

How i can use static factory method in my code in java

List<VO> list = new ArrayList<VO>(); I have another list of type object[] which contains nearly 100 items.Then i need to iterate and put those values into vo.So i write the following ...
-1
votes
2answers
49 views

How to get the part of HashMap object?

For example I have: aaa 1 ccc 1 bbb 1 ddd 3 I need to assign a value to new HashMap object first three rows only, without the last row. How to do this? Input HashMap object represented as >String, ...
1
vote
2answers
97 views

Extending a Java collection class like ArrayList for easier Generics management (warnings…etc)?

Extending Java default collections is not considered good practice. But i am wondering if, for the sake of cleaner code, one would not extend, say ArrayList to get rid of the generic. For example ...
0
votes
0answers
55 views

Group By and sum with NSArray

Is there any way to calculate sum after group by? I could only find @sum and @distinctUnionOfObjects with KVC but I don't know how to combine them. I am doing this: I have a report where records are ...
0
votes
1answer
77 views

Collection modified during foreach error

I know you can't modify a collection during a foreach, but I should be able to set variable values of the underlying iterator through it. For some reason the method below, every time it executes is ...
0
votes
2answers
62 views

Converting ArrayList into TreeSet

I have an ArrayList<Card> cards = new ArrayList<Card> which I need to convert into TreeSet<Card>. For this purpose I do: new TreeSet<Card>(cards) After all I have a size of ...
0
votes
1answer
48 views

Groovy subcollection

What is the Groovy way to get collection items without items in subcollection. For example: collection: [1,2,3,4,5,6] subcollection: [1,5,6] the result should be: [2,3,4] EDIT: It looks I'm doing ...
1
vote
2answers
43 views

Remove item from groovy list

I am trying to remove an item from groovy list. I've tried following: List<User> availableUsers = [] availableUsers = workers for (int i = 0; i < availableUsers.size(); i++) { ...
0
votes
1answer
35 views

Render backbone models from collection sequentially on click

I have pulled down a collection of models from the server like so: I only want to render the first model in the view, and then when the user clicks a button in the rendered view we render the next ...
0
votes
0answers
43 views

Primefaces Collector Remove not working

I am testing the primefaces collector example given in Showcase for my code I read somewhere that its necessary to override the equals and hashcode method for that. Even after overriding the methods ...
0
votes
3answers
83 views

Stack Overflow in Java with the Stack implementation in Collections-Java

I have a question which is related to the Stack implementation in the Collections framework in Java. I can see from the implementation that the size of the Stack can grow. Does this mean that a ...
0
votes
1answer
34 views

Using Collection sort for ArrayList

class UnfairContainer<T> implements Comparable<UnfairContainer> { private ArrayList<T> array = new ArrayList<T>(); public void sort() { ...
0
votes
4answers
76 views

ArrayList and Collection problems

I hope this makes sense, and that there is a tidier way of programming this. I have an ArrayList of Buttons and a Collection of Territories, I am trying to figure out how to iterate through the ...
3
votes
4answers
76 views

How to get distinct items from a Scala Iterable, maintaining laziness

I have a java.lang.Iterable which computes its values lazily. I am accessing it from Scala. Is there a core API way of returning only distinct values? For instance, imaging there was a filter method ...

1 2 3 4 5 147