Home | History | Annotate | Download | only in db

Lines Matching refs:ints

32      * If database returns a {@link String} containing a comma delimited list of ints, this converts
38 List<Integer> ints = strings.stream().map(Integer::parseInt).collect(toList());
39 return new IntList(ints);
44 * ints.
49 for (Integer integer : list.ints) {
83 public final List<Integer> ints;
85 public IntList(List<Integer> ints) {
86 this.ints = ints;
96 public StringList(List<String> ints) {
97 this.strings = ints;