Searched refs:techStringList (Results 1 – 1 of 1) sorted by relevance
199 static int[] getTechCodesFromStrings(String[] techStringList) throws IllegalArgumentException { in getTechCodesFromStrings() argument200 if (techStringList == null) { in getTechCodesFromStrings()203 int[] techIntList = new int[techStringList.length]; in getTechCodesFromStrings()205 for (int i = 0; i < techStringList.length; i++) { in getTechCodesFromStrings()206 Integer code = stringToCodeMap.get(techStringList[i]); in getTechCodesFromStrings()209 throw new IllegalArgumentException("Unknown tech type " + techStringList[i]); in getTechCodesFromStrings()