Enum JwtRequirement.RequiresTypeCase
- java.lang.Object
-
- java.lang.Enum<JwtRequirement.RequiresTypeCase>
-
- io.envoyproxy.envoy.config.filter.http.jwt_authn.v2alpha.JwtRequirement.RequiresTypeCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,Serializable,Comparable<JwtRequirement.RequiresTypeCase>
- Enclosing class:
- JwtRequirement
public static enum JwtRequirement.RequiresTypeCase extends Enum<JwtRequirement.RequiresTypeCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOW_MISSINGALLOW_MISSING_OR_FAILEDPROVIDER_AND_AUDIENCESPROVIDER_NAMEREQUIRES_ALLREQUIRES_ANYREQUIRESTYPE_NOT_SET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static JwtRequirement.RequiresTypeCaseforNumber(int value)intgetNumber()static JwtRequirement.RequiresTypeCasevalueOf(int value)Deprecated.static JwtRequirement.RequiresTypeCasevalueOf(String name)Returns the enum constant of this type with the specified name.static JwtRequirement.RequiresTypeCase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROVIDER_NAME
public static final JwtRequirement.RequiresTypeCase PROVIDER_NAME
-
PROVIDER_AND_AUDIENCES
public static final JwtRequirement.RequiresTypeCase PROVIDER_AND_AUDIENCES
-
REQUIRES_ANY
public static final JwtRequirement.RequiresTypeCase REQUIRES_ANY
-
REQUIRES_ALL
public static final JwtRequirement.RequiresTypeCase REQUIRES_ALL
-
ALLOW_MISSING_OR_FAILED
public static final JwtRequirement.RequiresTypeCase ALLOW_MISSING_OR_FAILED
-
ALLOW_MISSING
public static final JwtRequirement.RequiresTypeCase ALLOW_MISSING
-
REQUIRESTYPE_NOT_SET
public static final JwtRequirement.RequiresTypeCase REQUIRESTYPE_NOT_SET
-
-
Method Detail
-
values
public static JwtRequirement.RequiresTypeCase[] 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 (JwtRequirement.RequiresTypeCase c : JwtRequirement.RequiresTypeCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JwtRequirement.RequiresTypeCase 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
-
valueOf
@Deprecated public static JwtRequirement.RequiresTypeCase valueOf(int value)
Deprecated.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:
value- 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
-
forNumber
public static JwtRequirement.RequiresTypeCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
-