Package jetbrains.buildServer.plugins
Enum AgentExtensionType
- java.lang.Object
-
- java.lang.Enum<AgentExtensionType>
-
- jetbrains.buildServer.plugins.AgentExtensionType
-
- All Implemented Interfaces:
Serializable
,Comparable<AgentExtensionType>
public enum AgentExtensionType extends Enum<AgentExtensionType>
- Author:
- Eugene Petrenko (eugene.petrenko@gmail.com), Evgeniy Koshkin Date: 01.02.11 18:49
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AgentExtensionType
parse(String inputString)
static AgentExtensionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AgentExtensionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLUGIN
public static final AgentExtensionType PLUGIN
-
TOOL
public static final AgentExtensionType TOOL
-
UNKNOWN
public static final AgentExtensionType UNKNOWN
-
-
Method Detail
-
values
public static AgentExtensionType[] 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 (AgentExtensionType c : AgentExtensionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AgentExtensionType 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 nameNullPointerException
- if the argument is null
-
parse
@NotNull public static AgentExtensionType parse(@Nullable String inputString)
-
-