Enum RMEvents

    • Enum Constant Detail

      • ABOLISHED

        public static final RMEvents ABOLISHED
      • ALL_ALLOWANCES_GRANTED_ARE_TERMINATED

        public static final RMEvents ALL_ALLOWANCES_GRANTED_ARE_TERMINATED
      • CASE_CLOSED

        public static final RMEvents CASE_CLOSED
      • DECLASSIFICATION_REVIEW

        public static final RMEvents DECLASSIFICATION_REVIEW
      • OBSOLETE

        public static final RMEvents OBSOLETE
      • NO_LONGER_NEEDED

        public static final RMEvents NO_LONGER_NEEDED
      • STUDY_COMPLETE

        public static final RMEvents STUDY_COMPLETE
    • Method Detail

      • values

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

        public static RMEvents 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
      • getEventName

        public String getEventName()