public static enum PackageMessage.ReqType extends Enum<PackageMessage.ReqType>
Enum Constant and Description |
---|
ADD |
DELETE |
INVALIDATE |
TEST |
Modifier and Type | Method and Description |
---|---|
static PackageMessage.ReqType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PackageMessage.ReqType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackageMessage.ReqType ADD
public static final PackageMessage.ReqType DELETE
public static final PackageMessage.ReqType INVALIDATE
public static final PackageMessage.ReqType TEST
public static PackageMessage.ReqType[] values()
for (PackageMessage.ReqType c : PackageMessage.ReqType.values()) System.out.println(c);
public static PackageMessage.ReqType 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 © 2007–2022 The Apache Software Foundation. All rights reserved.