com.atlassian.bamboo.buildqueue.manager
Enum LocalAgentManager.DisabledAgentsInclusion

java.lang.Object
  extended by java.lang.Enum<LocalAgentManager.DisabledAgentsInclusion>
      extended by com.atlassian.bamboo.buildqueue.manager.LocalAgentManager.DisabledAgentsInclusion
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LocalAgentManager.DisabledAgentsInclusion>
Enclosing interface:
LocalAgentManager

public static enum LocalAgentManager.DisabledAgentsInclusion
extends java.lang.Enum<LocalAgentManager.DisabledAgentsInclusion>


Enum Constant Summary
EXCLUDE_DISABLED_AGENTS
           
INCLUDE_DISABLED_AGENTS
           
 
Method Summary
static LocalAgentManager.DisabledAgentsInclusion valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LocalAgentManager.DisabledAgentsInclusion[] 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

INCLUDE_DISABLED_AGENTS

public static final LocalAgentManager.DisabledAgentsInclusion INCLUDE_DISABLED_AGENTS

EXCLUDE_DISABLED_AGENTS

public static final LocalAgentManager.DisabledAgentsInclusion EXCLUDE_DISABLED_AGENTS
Method Detail

values

public static LocalAgentManager.DisabledAgentsInclusion[] 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 (LocalAgentManager.DisabledAgentsInclusion c : LocalAgentManager.DisabledAgentsInclusion.values())
    System.out.println(c);

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

valueOf

public static LocalAgentManager.DisabledAgentsInclusion valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2010 Atlassian. All Rights Reserved.