FileDocCategorySizeDatePackage
VCardEntryHandler.javaAPI DocAndroid 5.1 API1610Thu Mar 12 22:22:54 GMT 2015com.android.vcard

VCardEntryHandler

public interface VCardEntryHandler

The interface called by {@link VCardEntryConstructor}.

This class is useful when you don't want to know vCard data in detail. If you want to know it, it would be better to consider using {@link VCardInterpreter}.

Fields Summary
Constructors Summary
Methods Summary
public voidonEnd()
Called when the parsing ended. Able to be use this method for showing performance log, etc.

public voidonEntryCreated(VCardEntry entry)
The method called when one vCard entry is created. Children come before their parent in nested vCard files. e.g. In the following vCard, the entry for "entry2" comes before one for "entry1". BEGIN:VCARD N:entry1 BEGIN:VCARD N:entry2 END:VCARD END:VCARD

public voidonStart()
Called when the parsing started.