public static enum Deployment.Mode extends Enum<Deployment.Mode>
| Modifier and Type | Method and Description |
|---|---|
static Deployment.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Deployment.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Deployment.Mode RUN
public static final Deployment.Mode DEBUG
public static final Deployment.Mode PROFILE
public static Deployment.Mode[] values()
for (Deployment.Mode c : Deployment.Mode.values()) System.out.println(c);
public static Deployment.Mode 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 nullBuilt on May 24 2013. | Portions Copyright 1997-2013 Oracle. All rights reserved.