public enum AfterUseAction extends Enum<AfterUseAction>
| Modifier and Type | Method and Description | 
|---|---|
static AfterUseAction | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AfterUseAction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final AfterUseAction CLEAN
public static final AfterUseAction DROP
public static final AfterUseAction NONE
public static AfterUseAction[] values()
for (AfterUseAction c : AfterUseAction.values()) System.out.println(c);
public static AfterUseAction 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 © 2001-2018 Red Hat, Inc. All Rights Reserved.