Enum IntegrationAuthFlowEnum
- java.lang.Object
-
- java.lang.Enum<IntegrationAuthFlowEnum>
-
- com.epam.ta.reportportal.entity.enums.IntegrationAuthFlowEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IntegrationAuthFlowEnum>
public enum IntegrationAuthFlowEnum extends java.lang.Enum<IntegrationAuthFlowEnum>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<IntegrationAuthFlowEnum>findByName(java.lang.String name)static booleanisPresent(java.lang.String name)static IntegrationAuthFlowEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IntegrationAuthFlowEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OAUTH
public static final IntegrationAuthFlowEnum OAUTH
-
BASIC
public static final IntegrationAuthFlowEnum BASIC
-
TOKEN
public static final IntegrationAuthFlowEnum TOKEN
-
FORM
public static final IntegrationAuthFlowEnum FORM
-
LDAP
public static final IntegrationAuthFlowEnum LDAP
-
-
Method Detail
-
values
public static IntegrationAuthFlowEnum[] 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 (IntegrationAuthFlowEnum c : IntegrationAuthFlowEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntegrationAuthFlowEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
findByName
public static java.util.Optional<IntegrationAuthFlowEnum> findByName(java.lang.String name)
-
isPresent
public static boolean isPresent(java.lang.String name)
-
-