public static enum Metadata.Signal extends Enum<Metadata.Signal>
Enum Constant and Description |
---|
ACKNOWLEDGE |
COMPLETE |
CUSTOM |
FAIL |
KILL |
REPLAY |
Modifier and Type | Method and Description |
---|---|
static Metadata.Signal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Metadata.Signal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Metadata.Signal ACKNOWLEDGE
public static final Metadata.Signal COMPLETE
public static final Metadata.Signal FAIL
public static final Metadata.Signal KILL
public static final Metadata.Signal REPLAY
public static final Metadata.Signal CUSTOM
public static Metadata.Signal[] values()
for (Metadata.Signal c : Metadata.Signal.values()) System.out.println(c);
public static Metadata.Signal valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.