public static enum Deployment.DeploymentMode extends Enum<Deployment.DeploymentMode>
Enum Constant and Description |
---|
COMPLETE |
INCREMENTAL |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static Deployment.DeploymentMode |
fromValue(String text) |
static Deployment.DeploymentMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Deployment.DeploymentMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Deployment.DeploymentMode INCREMENTAL
public static final Deployment.DeploymentMode COMPLETE
public static final Deployment.DeploymentMode UNRECOGNIZED
public static Deployment.DeploymentMode[] values()
for (Deployment.DeploymentMode c : Deployment.DeploymentMode.values()) System.out.println(c);
public static Deployment.DeploymentMode 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 static Deployment.DeploymentMode fromValue(String text)
Copyright © 2009-2018 The Apache Software Foundation. All Rights Reserved.