Searched refs:techStringToCodeMap (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/nfc/ |
D | Tag.java | 218 HashMap<String, Integer> techStringToCodeMap = new HashMap<String, Integer>(); in getTechStringToCodeMap() local 220 techStringToCodeMap.put(IsoDep.class.getName(), TagTechnology.ISO_DEP); in getTechStringToCodeMap() 221 techStringToCodeMap.put(MifareClassic.class.getName(), TagTechnology.MIFARE_CLASSIC); in getTechStringToCodeMap() 222 techStringToCodeMap.put(MifareUltralight.class.getName(), TagTechnology.MIFARE_ULTRALIGHT); in getTechStringToCodeMap() 223 techStringToCodeMap.put(Ndef.class.getName(), TagTechnology.NDEF); in getTechStringToCodeMap() 224 techStringToCodeMap.put(NdefFormatable.class.getName(), TagTechnology.NDEF_FORMATABLE); in getTechStringToCodeMap() 225 techStringToCodeMap.put(NfcA.class.getName(), TagTechnology.NFC_A); in getTechStringToCodeMap() 226 techStringToCodeMap.put(NfcB.class.getName(), TagTechnology.NFC_B); in getTechStringToCodeMap() 227 techStringToCodeMap.put(NfcF.class.getName(), TagTechnology.NFC_F); in getTechStringToCodeMap() 228 techStringToCodeMap.put(NfcV.class.getName(), TagTechnology.NFC_V); in getTechStringToCodeMap() [all …]
|