List<String> asString() { List<String> collector = []; for (int i=0; i < size(); i++) { collector.add( get(i).asString() ); } return collector; }