Package it.tidalwave.cec
Enum CecEvent.EventType
- java.lang.Object
-
- java.lang.Enum<CecEvent.EventType>
-
- it.tidalwave.cec.CecEvent.EventType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CecEvent.EventType>
- Enclosing class:
- CecEvent
public static enum CecEvent.EventType extends java.lang.Enum<CecEvent.EventType>
Defines event types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description USER_CONTROL_PRESSED
USER_CONTROL_RELEASED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CecEvent.EventType
forCode(int code)
static CecEvent.EventType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CecEvent.EventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_CONTROL_PRESSED
public static final CecEvent.EventType USER_CONTROL_PRESSED
-
USER_CONTROL_RELEASED
public static final CecEvent.EventType USER_CONTROL_RELEASED
-
-
Method Detail
-
values
public static CecEvent.EventType[] 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 (CecEvent.EventType c : CecEvent.EventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CecEvent.EventType 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 namejava.lang.NullPointerException
- if the argument is null
-
forCode
@Nonnull public static CecEvent.EventType forCode(int code) throws it.tidalwave.util.NotFoundException
- Throws:
it.tidalwave.util.NotFoundException
-
-