public enum InitiatorType extends Enum<InitiatorType>
| Enum Constant and Description |
|---|
OTHER |
PARSER |
PRELOAD |
SCRIPT |
SIGNED_EXCHANGE |
| Modifier and Type | Method and Description |
|---|---|
static InitiatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InitiatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InitiatorType PARSER
public static final InitiatorType SCRIPT
public static final InitiatorType PRELOAD
public static final InitiatorType SIGNED_EXCHANGE
public static final InitiatorType OTHER
public static InitiatorType[] values()
for (InitiatorType c : InitiatorType.values()) System.out.println(c);
public static InitiatorType 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 © 2020. All rights reserved.