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 Summary
Enum Constants Enum Constant Description ADR
AGENT
Deprecated.ANNIVERSARY
BDAY
BIRTH
CALADRURI
CALURI
CATEGORIES
CLASS
Deprecated.CLIENTPIDMAP
DDAY
DEATH
EMAIL
EXTENDED
FBURL
FN
GENDER
GEO
IMPP
KEY
KIND
LABEL
Deprecated.LANG
LOGO
MAILER
Deprecated.MEMBER
N
NAME
Deprecated.NICKNAME
NOTE
ORG
PHOTO
PRODID
RELATED
REV
ROLE
SORT_STRING
SOUND
SOURCE
TEL
TITLE
TZ
UID
URL
VERSION
XML
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static PropertyName
valueOf(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
-
SOURCE
public static final PropertyName SOURCE
-
NAME
@Deprecated public static final PropertyName NAME
Deprecated.
-
KIND
public static final PropertyName KIND
-
XML
public static final PropertyName XML
-
FN
public static final PropertyName FN
-
N
public static final PropertyName N
-
NICKNAME
public static final PropertyName NICKNAME
-
PHOTO
public static final PropertyName PHOTO
-
BDAY
public static final PropertyName BDAY
-
DDAY
public static final PropertyName DDAY
-
BIRTH
public static final PropertyName BIRTH
-
DEATH
public static final PropertyName DEATH
-
ANNIVERSARY
public static final PropertyName ANNIVERSARY
-
GENDER
public static final PropertyName GENDER
-
ADR
public static final PropertyName ADR
-
LABEL
@Deprecated public static final PropertyName LABEL
Deprecated.
-
TEL
public static final PropertyName TEL
-
EMAIL
public static final PropertyName EMAIL
-
IMPP
public static final PropertyName IMPP
-
LANG
public static final PropertyName LANG
-
TZ
public static final PropertyName TZ
-
GEO
public static final PropertyName GEO
-
TITLE
public static final PropertyName TITLE
-
ROLE
public static final PropertyName ROLE
-
LOGO
public static final PropertyName LOGO
-
AGENT
@Deprecated public static final PropertyName AGENT
Deprecated.
-
ORG
public static final PropertyName ORG
-
MEMBER
public static final PropertyName MEMBER
-
RELATED
public static final PropertyName RELATED
-
CATEGORIES
public static final PropertyName CATEGORIES
-
NOTE
public static final PropertyName NOTE
-
PRODID
public static final PropertyName PRODID
-
REV
public static final PropertyName REV
-
SORT_STRING
public static final PropertyName SORT_STRING
-
SOUND
public static final PropertyName SOUND
-
UID
public static final PropertyName UID
-
CLIENTPIDMAP
public static final PropertyName CLIENTPIDMAP
-
URL
public static final PropertyName URL
-
VERSION
public static final PropertyName VERSION
-
CLASS
@Deprecated public static final PropertyName CLASS
Deprecated.
-
KEY
public static final PropertyName KEY
-
FBURL
public static final PropertyName FBURL
-
CALADRURI
public static final PropertyName CALADRURI
-
CALURI
public static final PropertyName CALURI
-
EXTENDED
public static final PropertyName EXTENDED
-
MAILER
@Deprecated public static final PropertyName MAILER
Deprecated.
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<PropertyName>
- Returns:
- the property name
-
-