Package io.mosip.mimoto.constant
Enum EventId
- java.lang.Object
-
- java.lang.Enum<EventId>
-
- io.mosip.mimoto.constant.EventId
-
- All Implemented Interfaces:
Serializable,Comparable<EventId>
public enum EventId extends Enum<EventId>
The Enum EventId.- Author:
- Ranjitha
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RPR_401Id for get event.RPR_402Id for update event.RPR_403Id for delete event.RPR_404Id for archieve packets event.RPR_405Id for exception event.RPR_406Id for authentication event.RPR_407Id for save event.RPR_408Id for trigger event.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EventIdvalueOf(String name)Returns the enum constant of this type with the specified name.static EventId[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException- if the argument is null
-
-