Searched refs:techStringToCodeMap (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/nfc/java/android/nfc/ |
D | Tag.java | 227 HashMap<String, Integer> techStringToCodeMap = new HashMap<String, Integer>(); in getTechStringToCodeMap() local 229 techStringToCodeMap.put(IsoDep.class.getName(), TagTechnology.ISO_DEP); in getTechStringToCodeMap() 230 techStringToCodeMap.put(MifareClassic.class.getName(), TagTechnology.MIFARE_CLASSIC); in getTechStringToCodeMap() 231 techStringToCodeMap.put(MifareUltralight.class.getName(), TagTechnology.MIFARE_ULTRALIGHT); in getTechStringToCodeMap() 232 techStringToCodeMap.put(Ndef.class.getName(), TagTechnology.NDEF); in getTechStringToCodeMap() 233 techStringToCodeMap.put(NdefFormatable.class.getName(), TagTechnology.NDEF_FORMATABLE); in getTechStringToCodeMap() 234 techStringToCodeMap.put(NfcA.class.getName(), TagTechnology.NFC_A); in getTechStringToCodeMap() 235 techStringToCodeMap.put(NfcB.class.getName(), TagTechnology.NFC_B); in getTechStringToCodeMap() 236 techStringToCodeMap.put(NfcF.class.getName(), TagTechnology.NFC_F); in getTechStringToCodeMap() 237 techStringToCodeMap.put(NfcV.class.getName(), TagTechnology.NFC_V); in getTechStringToCodeMap() [all …]
|