Home | History | Annotate | Download | only in nfc

Lines Matching refs:records

38  * NDEF defines messages and records. An NDEF Record contains
41 * one or more NDEF Records.
43 * This class represents logical (complete) NDEF Records, and can not be
44 * used to represent chunked (partial) NDEF Records. However
46 * containing chunked records, and will return a message with unchunked
47 * (complete) records.
60 * NDEF Records with correctly set tnf, type, id and payload fields, please
66 * to create records that do not confirm to the strict NFC Forum
71 * NDEF records, and to pack optional fields. This class does not expose
120 * When creating new records prefer {@link #createUri},
130 * Used to encode custom payloads. When creating new records
216 * Multiple RTD_ANDROID_APP records may be included
220 * RTD_ANDROID_APP records.
292 * containing one or more Android application records,
293 * the applications contained in those records will be the
302 * Note that Android application records do not overrule
488 * <li>Records with a tnf of {@link #TNF_EMPTY} cannot have a type,
490 * <li>Records with a tnf of {@link #TNF_UNKNOWN} or {@literal 0x07}
492 * <li>Records with a tnf of {@link #TNF_UNCHANGED} are not allowed
493 * since this class only represents complete (unchunked) records.</li>
500 * performed, so it is possible to create NDEF Records
625 * Currently this method considers all {@link #TNF_MIME_MEDIA} records to
626 * be MIME records, as well as some {@link #TNF_WELL_KNOWN} records such as
654 * Currently this method considers the following to be URI records:
656 * <li>{@link #TNF_ABSOLUTE_URI} records.</li>
661 * <li>{@link #TNF_EXTERNAL_TYPE} records.</li>
709 * Return complete URI of {@link #TNF_WELL_KNOWN}, {@link #RTD_URI} records.
739 * @return one or more records
743 List<NdefRecord> records = new ArrayList<NdefRecord>();
764 if (!mb && records.size() == 0 && !inChunk && !ignoreMbMe) {
766 } else if (mb && records.size() != 0 && !ignoreMbMe) {
834 records.add(new NdefRecord(tnf, type, id, payload));
842 return records.toArray(new NdefRecord[records.size()]);
860 * to present logical (unchunked) records.
892 * Does not chunk records.