Enum VendorManager.Vendor
- java.lang.Object
-
- java.lang.Enum<VendorManager.Vendor>
-
- io.jenkins.plugins.appdome.build.to.secure.VendorManager.Vendor
-
- All Implemented Interfaces:
Serializable,Comparable<VendorManager.Vendor>
- Enclosing class:
- VendorManager
public static enum VendorManager.Vendor extends Enum<VendorManager.Vendor>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWS_DEVICE_FARMBITBARBROWSERSTACKFIREBASEKATALONKOBITONLAMBDATESTPERFECTOSAUCELABSTRICENTIS_DEVICE_CLOUD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VendorManager.VendorvalueOf(String name)Returns the enum constant of this type with the specified name.static VendorManager.Vendor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AWS_DEVICE_FARM
public static final VendorManager.Vendor AWS_DEVICE_FARM
-
BITBAR
public static final VendorManager.Vendor BITBAR
-
BROWSERSTACK
public static final VendorManager.Vendor BROWSERSTACK
-
FIREBASE
public static final VendorManager.Vendor FIREBASE
-
KATALON
public static final VendorManager.Vendor KATALON
-
KOBITON
public static final VendorManager.Vendor KOBITON
-
LAMBDATEST
public static final VendorManager.Vendor LAMBDATEST
-
PERFECTO
public static final VendorManager.Vendor PERFECTO
-
SAUCELABS
public static final VendorManager.Vendor SAUCELABS
-
TRICENTIS_DEVICE_CLOUD
public static final VendorManager.Vendor TRICENTIS_DEVICE_CLOUD
-
-
Method Detail
-
values
public static VendorManager.Vendor[] 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 (VendorManager.Vendor c : VendorManager.Vendor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VendorManager.Vendor 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
-
-