Enum EventId

    • Enum Constant Detail

      • RPR_401

        public static final EventId RPR_401
        Id for get event.
      • RPR_402

        public static final EventId RPR_402
        Id for update event.
      • RPR_403

        public static final EventId RPR_403
        Id for delete event.
      • RPR_404

        public static final EventId RPR_404
        Id for archieve packets event.
      • RPR_405

        public static final EventId RPR_405
        Id for exception event.
      • RPR_406

        public static final EventId RPR_406
        Id for authentication event.
      • RPR_407

        public static final EventId RPR_407
        Id for save event.
      • RPR_408

        public static final EventId RPR_408
        Id for trigger event.
    • Method Detail

      • values

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

        public static EventId 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