// TODO: use more efficient storage right away?
List<Bit> attributes = new ArrayList<Bit>();
LabelList ll = new LabelList();
for(String entry : entries) {
try {
Bit attribute = Bit.valueOf(entry);
attributes.add(attribute);
}
catch(NumberFormatException e) {
ll.add(entry);
}