Package jetbrains.buildServer.xmlrpc
Enum NodeIdHolder.NodeIdOrigin
- java.lang.Object
-
- java.lang.Enum<NodeIdHolder.NodeIdOrigin>
-
- jetbrains.buildServer.xmlrpc.NodeIdHolder.NodeIdOrigin
-
- All Implemented Interfaces:
Serializable
,Comparable<NodeIdHolder.NodeIdOrigin>
- Enclosing interface:
- NodeIdHolder
public static enum NodeIdHolder.NodeIdOrigin extends Enum<NodeIdHolder.NodeIdOrigin>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NODE_ID_COOKIE
START_BUILD_REQUEST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeIdHolder.NodeIdOrigin
valueOf(String name)
Returns the enum constant of this type with the specified name.static NodeIdHolder.NodeIdOrigin[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START_BUILD_REQUEST
public static final NodeIdHolder.NodeIdOrigin START_BUILD_REQUEST
-
NODE_ID_COOKIE
public static final NodeIdHolder.NodeIdOrigin NODE_ID_COOKIE
-
-
Method Detail
-
values
public static NodeIdHolder.NodeIdOrigin[] 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 (NodeIdHolder.NodeIdOrigin c : NodeIdHolder.NodeIdOrigin.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeIdHolder.NodeIdOrigin 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
-
-