Enum XmlIcalConvert.ItemType
- java.lang.Object
-
- java.lang.Enum<XmlIcalConvert.ItemType>
-
- org.bedework.synch.cnctrs.exchange.XmlIcalConvert.ItemType
-
- All Implemented Interfaces:
Serializable,Comparable<XmlIcalConvert.ItemType>
- Enclosing class:
- XmlIcalConvert
public static enum XmlIcalConvert.ItemType extends Enum<XmlIcalConvert.ItemType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XmlIcalConvert.ItemTypevalueOf(String name)Returns the enum constant of this type with the specified name.static XmlIcalConvert.ItemType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Note
public static final XmlIcalConvert.ItemType Note
-
Post
public static final XmlIcalConvert.ItemType Post
-
Event
public static final XmlIcalConvert.ItemType Event
-
Task
public static final XmlIcalConvert.ItemType Task
-
Contact
public static final XmlIcalConvert.ItemType Contact
-
Journal
public static final XmlIcalConvert.ItemType Journal
-
DistList
public static final XmlIcalConvert.ItemType DistList
-
StickyNote
public static final XmlIcalConvert.ItemType StickyNote
-
-
Method Detail
-
values
public static XmlIcalConvert.ItemType[] 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 (XmlIcalConvert.ItemType c : XmlIcalConvert.ItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XmlIcalConvert.ItemType 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
-
-