Enum Event.EventEnum

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Event.EventEnum>
    Enclosing class:
    Event

    public static enum Event.EventEnum
    extends java.lang.Enum<Event.EventEnum>
    • Enum Constant Detail

      • SCREENING_RESULTS_CREATED

        public static final Event.EventEnum SCREENING_RESULTS_CREATED
      • SCREENING_RESULTS_UPDATED

        public static final Event.EventEnum SCREENING_RESULTS_UPDATED
      • SCREENING_RESULTS_COMPLETED

        public static final Event.EventEnum SCREENING_RESULTS_COMPLETED
      • SCREENING_RESULTS_FAILED

        public static final Event.EventEnum SCREENING_RESULTS_FAILED
      • SCREENING_RESULTS_CANCELLED

        public static final Event.EventEnum SCREENING_RESULTS_CANCELLED
    • Method Detail

      • values

        public static Event.EventEnum[] 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 (Event.EventEnum c : Event.EventEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Event.EventEnum valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • value

        public java.lang.String value()