Home
last modified time | relevance | path

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

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