Package io.jpostman.schema.model
Enum ApiAuthType
- java.lang.Object
-
- java.lang.Enum<ApiAuthType>
-
- io.jpostman.schema.model.ApiAuthType
-
- All Implemented Interfaces:
Serializable,Comparable<ApiAuthType>
public enum ApiAuthType extends Enum<ApiAuthType>
Defines the supported authentication strategies in the common API schema model.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApiAuthTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ApiAuthType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ApiAuthType NONE
-
BEARER
public static final ApiAuthType BEARER
-
BASIC
public static final ApiAuthType BASIC
-
API_KEY
public static final ApiAuthType API_KEY
-
OAUTH2
public static final ApiAuthType OAUTH2
-
-
Method Detail
-
values
public static ApiAuthType[] 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 (ApiAuthType c : ApiAuthType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApiAuthType 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
-
-