BrightSide Workbench Full Report + Source Code
org.turro.vcard.properties.PropertyTag Enum Reference

Public Member Functions

String getTag ()
 
int getValueCount ()
 

Static Public Member Functions

static PropertyTag getInstance (String l)
 

Public Attributes

 VCP_ID =("X-ID", 1)
 
 VCP_GID =("X-GID", 1)
 
 VCP_FN =("FN", 1)
 
 VCP_N =("N", 5)
 
 VCP_ADR =("ADR", 7)
 
 VCP_EMAIL =("EMAIL", 1)
 
 VCP_TEL =("TEL", 1)
 
 VCP_NOTE =("NOTE", 1)
 
 VCP_SOURCE =("SOURCE", 1)
 
 VCP_TITLE =("TITLE", 1)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 24 of file PropertyTag.java.

Member Function Documentation

◆ getInstance()

static PropertyTag org.turro.vcard.properties.PropertyTag.getInstance ( String  l)
static

Definition at line 37 of file PropertyTag.java.

37  {
38  for(PropertyTag pt : PropertyTag.values()) {
39  if(l.startsWith(pt.tag + ";") || l.startsWith(pt.tag + ":")) {
40  return pt;
41  }
42  }
43  return null;
44  }
Here is the caller graph for this function:

◆ getTag()

String org.turro.vcard.properties.PropertyTag.getTag ( )

Definition at line 54 of file PropertyTag.java.

54  {
55  return tag;
56  }
Here is the caller graph for this function:

◆ getValueCount()

int org.turro.vcard.properties.PropertyTag.getValueCount ( )

Definition at line 58 of file PropertyTag.java.

58  {
59  return valueCount;
60  }

Member Data Documentation

◆ VCP_ADR

org.turro.vcard.properties.PropertyTag.VCP_ADR =("ADR", 7)

Definition at line 30 of file PropertyTag.java.

◆ VCP_EMAIL

org.turro.vcard.properties.PropertyTag.VCP_EMAIL =("EMAIL", 1)

Definition at line 31 of file PropertyTag.java.

◆ VCP_FN

org.turro.vcard.properties.PropertyTag.VCP_FN =("FN", 1)

Definition at line 28 of file PropertyTag.java.

◆ VCP_GID

org.turro.vcard.properties.PropertyTag.VCP_GID =("X-GID", 1)

Definition at line 27 of file PropertyTag.java.

◆ VCP_ID

org.turro.vcard.properties.PropertyTag.VCP_ID =("X-ID", 1)

Definition at line 26 of file PropertyTag.java.

◆ VCP_N

org.turro.vcard.properties.PropertyTag.VCP_N =("N", 5)

Definition at line 29 of file PropertyTag.java.

◆ VCP_NOTE

org.turro.vcard.properties.PropertyTag.VCP_NOTE =("NOTE", 1)

Definition at line 33 of file PropertyTag.java.

◆ VCP_SOURCE

org.turro.vcard.properties.PropertyTag.VCP_SOURCE =("SOURCE", 1)

Definition at line 34 of file PropertyTag.java.

◆ VCP_TEL

org.turro.vcard.properties.PropertyTag.VCP_TEL =("TEL", 1)

Definition at line 32 of file PropertyTag.java.

◆ VCP_TITLE

org.turro.vcard.properties.PropertyTag.VCP_TITLE =("TITLE", 1)

Definition at line 35 of file PropertyTag.java.


The documentation for this enum was generated from the following file: