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_FARM
BITBAR
BROWSERSTACK
FIREBASE
KATALON
LAMBDATEST
PERFECTO
SAUCELABS
TOSCA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VendorManager.Vendor
valueOf(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
-
SAUCELABS
public static final VendorManager.Vendor SAUCELABS
-
BITBAR
public static final VendorManager.Vendor BITBAR
-
LAMBDATEST
public static final VendorManager.Vendor LAMBDATEST
-
BROWSERSTACK
public static final VendorManager.Vendor BROWSERSTACK
-
PERFECTO
public static final VendorManager.Vendor PERFECTO
-
FIREBASE
public static final VendorManager.Vendor FIREBASE
-
KATALON
public static final VendorManager.Vendor KATALON
-
TOSCA
public static final VendorManager.Vendor TOSCA
-
AWS_DEVICE_FARM
public static final VendorManager.Vendor AWS_DEVICE_FARM
-
-
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
-
-