public enum LifecycleOperation extends Enum<LifecycleOperation>
| Modifier and Type | Method and Description |
|---|---|
int |
limit() |
static LifecycleOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleOperation START
public static final LifecycleOperation STOP
public static final LifecycleOperation RELOAD
public static final LifecycleOperation RESTART
public static final LifecycleOperation KILL
public static LifecycleOperation[] values()
for (LifecycleOperation c : LifecycleOperation.values()) System.out.println(c);
public static LifecycleOperation 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 nullpublic int limit()
Copyright © 2014 JBoss, a division of Red Hat. All rights reserved.