JBoss AS7 Deployment Plugin 7.9.Final

org.jboss.as.plugin.deployment
Enum Deployment.Type

java.lang.Object
  extended by java.lang.Enum<Deployment.Type>
      extended by org.jboss.as.plugin.deployment.Deployment.Type
All Implemented Interfaces:
Serializable, Comparable<Deployment.Type>
Enclosing interface:
Deployment

public static enum Deployment.Type
extends Enum<Deployment.Type>


Enum Constant Summary
ADD
           
DEPLOY
           
FORCE_ADD
           
FORCE_DEPLOY
           
REDEPLOY
           
UNDEPLOY
           
UNDEPLOY_IGNORE_MISSING
           
 
Method Summary
static Deployment.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Deployment.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADD

public static final Deployment.Type ADD

FORCE_ADD

public static final Deployment.Type FORCE_ADD

DEPLOY

public static final Deployment.Type DEPLOY

FORCE_DEPLOY

public static final Deployment.Type FORCE_DEPLOY

UNDEPLOY

public static final Deployment.Type UNDEPLOY

UNDEPLOY_IGNORE_MISSING

public static final Deployment.Type UNDEPLOY_IGNORE_MISSING

REDEPLOY

public static final Deployment.Type REDEPLOY
Method Detail

values

public static Deployment.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Deployment.Type c : Deployment.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Deployment.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

JBoss AS7 Deployment Plugin 7.9.Final

Copyright © 2016 JBoss by Red Hat. All Rights Reserved.