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