public class VNodeBuilder extends Object implements com.android.vcard.VCardInterpreter
The class storing the parse result to custom datastruct:
{@link VNode}, and {@link PropertyNode}.
Maybe several vcard instance, so use vNodeList to store.
This is called VNode, not VCardNode, since it was used for expressing vCalendar (iCal).
Fields Summary
private static String
LOG_TAG
private List
mVNodeList
private VNode
mCurrentVNode
private String
mSourceCharset
The charset using which VParser parses the text.
private String
mTargetCharset
The charset with which byte array is encoded to String.
private boolean
mStrictLineBreakParsing
Constructors Summary
public VNodeBuilder()
this(VCardConfig.DEFAULT_IMPORT_CHARSET, false);
public VNodeBuilder(String targetCharset, boolean strictLineBreakParsing)