Enum IEventHandler.Registration
- java.lang.Object
-
- java.lang.Enum<IEventHandler.Registration>
-
- edu.kit.ipd.sdq.eventsim.api.events.IEventHandler.Registration
-
- All Implemented Interfaces:
Serializable
,Comparable<IEventHandler.Registration>
- Enclosing interface:
- IEventHandler<T extends SimulationEvent>
public static enum IEventHandler.Registration extends Enum<IEventHandler.Registration>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KEEP_REGISTERED
UNREGISTER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IEventHandler.Registration
valueOf(String name)
Returns the enum constant of this type with the specified name.static IEventHandler.Registration[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEEP_REGISTERED
public static final IEventHandler.Registration KEEP_REGISTERED
-
UNREGISTER
public static final IEventHandler.Registration UNREGISTER
-
-
Method Detail
-
values
public static IEventHandler.Registration[] 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 (IEventHandler.Registration c : IEventHandler.Registration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IEventHandler.Registration 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
-
-