Home | History | Annotate | Download | only in utils

Lines Matching refs:convertTo

65      * {@code convertTo} as a one-to-one map (via the index).
68 * strings appearing in {@code convertFrom} but not {@code convertTo} are silently
73 * @param convertTo Conversion list of ints
74 * @return An array of ints where the values correspond to the ones in {@code convertTo}
78 List<String> list, String[] convertFrom, int[] convertTo) {
83 List<Integer> convertedList = convertStringListToIntList(list, convertFrom, convertTo);
95 * {@code convertTo} as a one-to-one map (via the index).
98 * strings appearing in {@code convertFrom} but not {@code convertTo} are silently
103 * @param convertTo Conversion list of ints
104 * @return A list of ints where the values correspond to the ones in {@code convertTo}
108 List<String> list, String[] convertFrom, int[] convertTo) {
125 if (strIndex < convertTo.length) {
126 convertedList.add(convertTo[strIndex]);