Enum ICalBuilder.Status

java.lang.Object
java.lang.Enum<ICalBuilder.Status>
org.bzdev.net.calendar.ICalBuilder.Status
All Implemented Interfaces:
Serializable, Comparable<ICalBuilder.Status>
Enclosing class:
ICalBuilder

public static enum ICalBuilder.Status extends Enum<ICalBuilder.Status>
Status values. Please see Section 3.8.1.11 of RFC 5545 for a detailed description of these values.
  • Enum Constant Details

    • TENTATIVE

      public static final ICalBuilder.Status TENTATIVE
      Indicates that an event is tentative.
    • CONFIRMED

      public static final ICalBuilder.Status CONFIRMED
      Indicates that an event is definite.
    • CANCELLED

      public static final ICalBuilder.Status CANCELLED
      Indicates that an event, to-do component, or a journal component was canceled.
    • NEEDS_ACTION

      public static final ICalBuilder.Status NEEDS_ACTION
      Indicates a to-do component requires some sort of action.
    • COMPLETED

      public static final ICalBuilder.Status COMPLETED
      Indicates that a to-do component was completed.
    • IN_PROCESS

      public static final ICalBuilder.Status IN_PROCESS
      Indicates that a to-do component is in process.
    • DRAFT

      public static final ICalBuilder.Status DRAFT
      Indicates that a journal component is a draft version
    • FINAL

      public static final ICalBuilder.Status FINAL
      Indicates that a journal component is the final version.
  • Method Details

    • values

      public static ICalBuilder.Status[] 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

      public static ICalBuilder.Status 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