I receive an Iterable from a method which contains two types of data.
- Type A with the tag
"0" - Type B with the tag
"1"
So, I am able to detect which element belongs to which type and trying then to create an ArrayList for each and dump the respective data into it.
List<TextPair> valuesA = new ArrayList<TextPair>();
List<TextPair> valuesB = new ArrayList<TextPair>();
Here is how I try to do it:
for (TextPair value : values) {
if(value.getSecond().toString().equals("0"))
valuesA.add(value);
else
valuesB.add(value);
}
The problem is that the first List seems to being overwritten with the values of the second. How can I tell this? Because when I look in the elements in both valuesA and valuesB they are identical and have both the values with the tag "1". I lose all the values with the tag "0". I don't know why this is happening and couldn't find a workaround yet.
My final goal is to compare every element of tag "0" with the elements of tag "1". I tried to do this without splitting the iterable, but since I can only traverse the iterable forward I could compare only the first element with "0" and lost the rest since I couldn't iterate back. Since the Iterable is provided from a framework (Hadoop) I have no chance to use another collection type than Iterable. So, any ideas?
Now I'm adding a working code sample, but not tested with the Hadoop framework:
public static void main(String[] args) {
List<TextPair> values = new ArrayList<TextPair>();
values.add(new TextPair("cdr0", "0"));
values.add(new TextPair("att0", "1"));
values.add(new TextPair("cdr1", "0"));
values.add(new TextPair("att1", "1"));
values.add(new TextPair("cdr2", "0"));
values.add(new TextPair("att2", "1"));
List<TextPair> valuesA = new ArrayList<TextPair>();
List<TextPair> valuesB = new ArrayList<TextPair>();
for(TextPair value : values)
{
if(value.getSecond().toString().equals("0"))
valuesA.add(value);
else
valuesB.add(value);
}
for(TextPair valueA : valuesA)
System.out.println("valueA: " + valueA);
for(TextPair valueB : valuesB)
System.out.println("valueB: " + valueB);
}
I used an ArrayList for values though instead of an Iterable. Is there a way to fill an Iterable with elements? Or converting it to another Collection or other way around?
value.getSecond().toString()if it is really in form "1" or "0". If there are any unnecessary white spaces just useString.trim()method. – Jiri Kremser Dec 12 '12 at 9:04TextPair. MaybeTextPairisn't immutable and gets overwritten/modified elsewhere? (Just a guess because everything else seems to be Ok) – Neet Dec 12 '12 at 9:27