Package net.fortuna.ical4j.vcard
Enum PropertyName
- java.lang.Object
- 
- java.lang.Enum<PropertyName>
- 
- net.fortuna.ical4j.vcard.PropertyName
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<PropertyName>
 
 public enum PropertyName extends Enum<PropertyName> Enumeration of property identifiers.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ADRAGENTDeprecated.ANNIVERSARYBDAYBIRTHCALADRURICALURICATEGORIESCLASSDeprecated.CLIENTPIDMAPDDAYDEATHEMAILEXTENDEDFBURLFNGENDERGEOIMPPKEYKINDLABELDeprecated.LANGLOGOMAILERDeprecated.MEMBERNNAMEDeprecated.NICKNAMENOTEORGPHOTOPRODIDRELATEDREVROLESORT_STRINGSOUNDSOURCETELTITLETZUIDURLVERSIONXML
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static PropertyNamevalueOf(String name)Returns the enum constant of this type with the specified name.static PropertyName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SOURCEpublic static final PropertyName SOURCE 
 - 
NAME@Deprecated public static final PropertyName NAME Deprecated.
 - 
KINDpublic static final PropertyName KIND 
 - 
XMLpublic static final PropertyName XML 
 - 
FNpublic static final PropertyName FN 
 - 
Npublic static final PropertyName N 
 - 
NICKNAMEpublic static final PropertyName NICKNAME 
 - 
PHOTOpublic static final PropertyName PHOTO 
 - 
BDAYpublic static final PropertyName BDAY 
 - 
DDAYpublic static final PropertyName DDAY 
 - 
BIRTHpublic static final PropertyName BIRTH 
 - 
DEATHpublic static final PropertyName DEATH 
 - 
ANNIVERSARYpublic static final PropertyName ANNIVERSARY 
 - 
GENDERpublic static final PropertyName GENDER 
 - 
ADRpublic static final PropertyName ADR 
 - 
LABEL@Deprecated public static final PropertyName LABEL Deprecated.
 - 
TELpublic static final PropertyName TEL 
 - 
EMAILpublic static final PropertyName EMAIL 
 - 
IMPPpublic static final PropertyName IMPP 
 - 
LANGpublic static final PropertyName LANG 
 - 
TZpublic static final PropertyName TZ 
 - 
GEOpublic static final PropertyName GEO 
 - 
TITLEpublic static final PropertyName TITLE 
 - 
ROLEpublic static final PropertyName ROLE 
 - 
LOGOpublic static final PropertyName LOGO 
 - 
AGENT@Deprecated public static final PropertyName AGENT Deprecated.
 - 
ORGpublic static final PropertyName ORG 
 - 
MEMBERpublic static final PropertyName MEMBER 
 - 
RELATEDpublic static final PropertyName RELATED 
 - 
CATEGORIESpublic static final PropertyName CATEGORIES 
 - 
NOTEpublic static final PropertyName NOTE 
 - 
PRODIDpublic static final PropertyName PRODID 
 - 
REVpublic static final PropertyName REV 
 - 
SORT_STRINGpublic static final PropertyName SORT_STRING 
 - 
SOUNDpublic static final PropertyName SOUND 
 - 
UIDpublic static final PropertyName UID 
 - 
CLIENTPIDMAPpublic static final PropertyName CLIENTPIDMAP 
 - 
URLpublic static final PropertyName URL 
 - 
VERSIONpublic static final PropertyName VERSION 
 - 
CLASS@Deprecated public static final PropertyName CLASS Deprecated.
 - 
KEYpublic static final PropertyName KEY 
 - 
FBURLpublic static final PropertyName FBURL 
 - 
CALADRURIpublic static final PropertyName CALADRURI 
 - 
CALURIpublic static final PropertyName CALURI 
 - 
EXTENDEDpublic static final PropertyName EXTENDED 
 - 
MAILER@Deprecated public static final PropertyName MAILER Deprecated.
 
- 
 - 
Method Detail- 
valuespublic static PropertyName[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PropertyName c : PropertyName.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PropertyName valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<PropertyName>
- Returns:
- the property name
 
 
- 
 
-