- All Implemented Interfaces:
Serializable
,Comparable<ICalBuilder.Status>
- Enclosing class:
- ICalBuilder
Status values.
Please see
Section 3.8.1.11 of RFC 5545 for a detailed description of
these values.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that an event, to-do component, or a journal component was canceled.Indicates that a to-do component was completed.Indicates that an event is definite.Indicates that a journal component is a draft versionIndicates that a journal component is the final version.Indicates that a to-do component is in process.Indicates a to-do component requires some sort of action.Indicates that an event is tentative. -
Method Summary
Modifier and TypeMethodDescriptionstatic ICalBuilder.Status
Returns the enum constant of this type with the specified name.static ICalBuilder.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TENTATIVE
Indicates that an event is tentative. -
CONFIRMED
Indicates that an event is definite. -
CANCELLED
Indicates that an event, to-do component, or a journal component was canceled. -
NEEDS_ACTION
Indicates a to-do component requires some sort of action. -
COMPLETED
Indicates that a to-do component was completed. -
IN_PROCESS
Indicates that a to-do component is in process. -
DRAFT
Indicates that a journal component is a draft version -
FINAL
Indicates that a journal component is the final version.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-