public static enum Signal.SignalType extends java.lang.Enum<Signal.SignalType>
| Enum Constant and Description |
|---|
COMMIT |
RETRANSMIT |
START |
STOP |
UPDATE_SUBSCRIPTION |
UPDATE_TOPIC |
| Modifier and Type | Method and Description |
|---|---|
static Signal.SignalType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Signal.SignalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Signal.SignalType START
public static final Signal.SignalType STOP
public static final Signal.SignalType RETRANSMIT
public static final Signal.SignalType UPDATE_SUBSCRIPTION
public static final Signal.SignalType UPDATE_TOPIC
public static final Signal.SignalType COMMIT
public static Signal.SignalType[] values()
for (Signal.SignalType c : Signal.SignalType.values()) System.out.println(c);
public static Signal.SignalType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null