Home
last modified time | relevance | path

Searched refs:techStringList (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/nfc/java/android/nfc/
DTag.java208 static int[] getTechCodesFromStrings(String[] techStringList) throws IllegalArgumentException { in getTechCodesFromStrings() argument
209 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()