public static enum JenkinsClient.ItemType extends Enum<JenkinsClient.ItemType>
| Enum Constant and Description |
|---|
FOLDER
Item is a folder.
|
NOT_FOLDER
Item is not a folder.
|
| Modifier and Type | Method and Description |
|---|---|
static JenkinsClient.ItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JenkinsClient.ItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JenkinsClient.ItemType FOLDER
public static final JenkinsClient.ItemType NOT_FOLDER
public static JenkinsClient.ItemType[] values()
for (JenkinsClient.ItemType c : JenkinsClient.ItemType.values()) System.out.println(c);
public static JenkinsClient.ItemType 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 nullCopyright © 2015–2016 AZYVA INC.. All rights reserved.