Collections API's provide developers with a set of classes and interfaces that makes it easier to handle collections of objects.
0
votes
0answers
39 views
Maps values are maintaining some session
I have a typical problem on coding through java .
Explanation : I fetch the database and get a list of 100 records or more, then i use to put this results in a list and added in a map .
While ...
0
votes
1answer
16 views
Can I publish only Collections object in meteor?
On the introducing article of DDP, I read that anything can be published, but I've read somewhere ( for example in this Stackoverflow comment Publish arbitrary data and automatically update HTML ) ...
1
vote
2answers
23 views
Writing back to iterator while looping over more than one collection
I would like to loop through two collections using iterators, modifying one based on a (sufficiently complex) algorithm involving the other. Consider the following minimal example:
#include ...
0
votes
2answers
23 views
Thread-safe sorted collection that supports iteration in Java
Is there a Collection in java that is :
Thread-Safe
Sorted
Iterable (or has an equivalent method of element access that is thread safe)
I can't seem to find any just by searching google/javadocs ...
0
votes
1answer
77 views
Which type of collection is best? [closed]
Wording in my previous question prevented people from answering it. Regardless to say, I can do what I need to do. My ultimate concern is which option is optimal?
I am traversing the entire Active ...
1
vote
1answer
66 views
sorting a list within a list in java [duplicate]
I have the below code
List<List1<String, String>> list1_a = Readafile(filename);
the data in the file is as follows
value 1 value 2 rank
a b 1
a ...
1
vote
2answers
51 views
using contains in java to check duplicates before adding to a two dim list
I have the below code:
List<Check<String, String>> listAdd = new ArrayList<Check<String, String>>();
for (list1<String, String> h : list1_a) {
for ...
0
votes
2answers
13 views
EF 5, one to many, more than one table
I'm having a little of trouble with the following classes:
public class TwoVariableDetails
{
public TwoVariableDetails()
{
MovementsPerBlocks = new HashSet<MovementsRow>();
...
1
vote
1answer
28 views
Symfony2 - Apply a DataTransformer to a collection in forms
I need to make a Symfony2 Form and add a data transformer to a Collection. I have a StudentType Form that has a hidden field, which will contain a unique student mail. The case use is a course that ...
0
votes
1answer
51 views
Append elements to List<String, String>
I have a List object called listAdd declared as:
List<Check<String, String>> listAdd = new ArrayList<Check<String, String>>();
I have the below code that retrieves a String ...
0
votes
0answers
24 views
Backbone collection.get() doesn't restore a model with is methods
I am working on an online/offline application and I have noticed this :
I fetch in my collection my offline retrieve from localStorage. (everytime a user log in online, I save him with addition datas ...
0
votes
2answers
25 views
How I can control a XML with XMLReader to fill a TreeView with Subtree Nodes?
hi i have problems with xml and the treeview control in C# Windows Forms.
My Application:
First I create a string out of a cmd command. This is a output in xml format. the final_output is my ...
-2
votes
2answers
34 views
How I can fill a treeView with a List<string>? [closed]
hi i have a question to treeview.
I have a List liste and the treeview with the name treeLic. Now I want to fill this treeview with this list. Can I do this and how?
XmlReader xr = ...
0
votes
1answer
90 views
How to make ArrayList for each diffrent object value in a ArrayList
I have a array which contains objects of ColorType, and these objects have salaryCode, so what i am trying to do is first of all i want to make array as arrayList and then it should short based on ...
0
votes
1answer
71 views
collection item() vs array []
Apologies if this is a duplicate - it is not easy to search for.
I have today come across TWO questions using someArrayOrCollection.item(i) instead of my preferred someArrayOrCollection[i]
Example: ...
0
votes
1answer
22 views
How to add an item to a collection in RacerJs DerbyJs?
I want to add an item to a collection using RacerJs/DerbyJs, but it just doesn't work. I must be really overlooking something...
What I tried
model.set('news', [
{ text: "something" }
]);
And ...
0
votes
1answer
30 views
Finding matches that contain certain text in properties using LINQ
I am trying to convert the following code to LINQ
foreach (var item in pageHistorycol)
{
if (item.PageTitle.Contains(text) || item.PageURI.Contains(text))
{
...
0
votes
2answers
49 views
How to map a RESTful API to an URL in BackboneJS model and collections?
I have the following RESTful API:
GET /club/1.0/club.json?sport=FO&country=ES
This service gives a list of clubs by sport and country (ex: Football in Spain)
GET /club/1.0/club.json?id=xxxx
...
0
votes
2answers
32 views
MongoDB: Embedded Documents vs Multiple Collections
I have to modelize my data in a MongoDB database.
My data are posts and comments, so the approachs I have thought are two:
1 collection of status with the comments embedded in each status
1 ...
2
votes
1answer
64 views
Java Object reference
This is regarding the usage of ArrayList returned by another class instance variable.
Class A {
//assigned list of string to it.
private List < String > newAl;
//returns the list
...
3
votes
1answer
54 views
Trying to understand following code for reversing a sentence
Please consider the code below:
public class SentenceReversal {
/**
* @param args
*/
public static void main(String[] args) {
String[] parts = "This is an interview ...
1
vote
1answer
19 views
map update in cassandra with cql3
i have a CF in cassandra that have a coulmn type map
this CF is as below:
CREATE TABLE word_cat (
word text,
doc_occurrence map <text, int >,
total_occurrence map <text, int ...
1
vote
1answer
42 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
56 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
45 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
13 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
93 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
24 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
25 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
51 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
48 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
57 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
74 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
46 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
28 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
24 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
34 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
21 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
90 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
39 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
33 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},
...
5
votes
3answers
97 views
+100
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 ...



