Home | History | Annotate | Download | only in imap

Lines Matching refs:list

61      * list of individual numbers. If the set is invalid, an empty array is returned.
69 ArrayList<String> list = new ArrayList<String>();
77 list.add(item);
84 list.add(rangeItem);
89 String[] stringList = new String[list.size()];
90 return list.toArray(stringList);
94 * Expand the given number range into a list of individual numbers. If the range is not valid,
103 ArrayList<String> list = new ArrayList<String>();
112 list.add(Integer.toString(i));
116 list.add(Integer.toString(i));
124 String[] stringList = new String[list.size()];
125 return list.toArray(stringList);