Searched refs:techStringList (Results 1 – 1 of 1) sorted by relevance
208 static int[] getTechCodesFromStrings(String[] techStringList) throws IllegalArgumentException { in getTechCodesFromStrings() argument209 if (techStringList == null) { in getTechCodesFromStrings()212 int[] techIntList = new int[techStringList.length]; in getTechCodesFromStrings()214 for (int i = 0; i < techStringList.length; i++) { in getTechCodesFromStrings()215 Integer code = stringToCodeMap.get(techStringList[i]); in getTechCodesFromStrings()218 throw new IllegalArgumentException("Unknown tech type " + techStringList[i]); in getTechCodesFromStrings()