Enum APIMIntegrationConstants.ResourceAuthTypes
- java.lang.Object
-
- java.lang.Enum<APIMIntegrationConstants.ResourceAuthTypes>
-
- org.wso2.am.integration.test.utils.base.APIMIntegrationConstants.ResourceAuthTypes
-
- All Implemented Interfaces:
Serializable,Comparable<APIMIntegrationConstants.ResourceAuthTypes>
- Enclosing class:
- APIMIntegrationConstants
public static enum APIMIntegrationConstants.ResourceAuthTypes extends Enum<APIMIntegrationConstants.ResourceAuthTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATIONAPPLICATION_AND_APPLICATION_USERAPPLICATION_USERNONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthType()static APIMIntegrationConstants.ResourceAuthTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static APIMIntegrationConstants.ResourceAuthTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPLICATION_USER
public static final APIMIntegrationConstants.ResourceAuthTypes APPLICATION_USER
-
NONE
public static final APIMIntegrationConstants.ResourceAuthTypes NONE
-
APPLICATION
public static final APIMIntegrationConstants.ResourceAuthTypes APPLICATION
-
APPLICATION_AND_APPLICATION_USER
public static final APIMIntegrationConstants.ResourceAuthTypes APPLICATION_AND_APPLICATION_USER
-
-
Method Detail
-
values
public static APIMIntegrationConstants.ResourceAuthTypes[] 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 (APIMIntegrationConstants.ResourceAuthTypes c : APIMIntegrationConstants.ResourceAuthTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static APIMIntegrationConstants.ResourceAuthTypes 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
-
getAuthType
public String getAuthType()
-
-