Enum GetDastScanSettingResponse.ApiSource
- java.lang.Object
-
- java.lang.Enum<GetDastScanSettingResponse.ApiSource>
-
- org.jenkinsci.plugins.fodupload.models.response.Dast.GetDastScanSettingResponse.ApiSource
-
- All Implemented Interfaces:
Serializable
,Comparable<GetDastScanSettingResponse.ApiSource>
- Enclosing class:
- GetDastScanSettingResponse
public static enum GetDastScanSettingResponse.ApiSource extends Enum<GetDastScanSettingResponse.ApiSource>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GetDastScanSettingResponse.ApiSource
valueOf(String name)
Returns the enum constant of this type with the specified name.static GetDastScanSettingResponse.ApiSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FileId
public static final GetDastScanSettingResponse.ApiSource FileId
-
Url
public static final GetDastScanSettingResponse.ApiSource Url
-
-
Method Detail
-
values
public static GetDastScanSettingResponse.ApiSource[] 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 (GetDastScanSettingResponse.ApiSource c : GetDastScanSettingResponse.ApiSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GetDastScanSettingResponse.ApiSource 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
-
-