Package com.google.auth.oauth2
Enum ExternalAccountCredentials.SubjectTokenTypes
- java.lang.Object
-
- java.lang.Enum<ExternalAccountCredentials.SubjectTokenTypes>
-
- com.google.auth.oauth2.ExternalAccountCredentials.SubjectTokenTypes
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExternalAccountCredentials.SubjectTokenTypes>
- Enclosing class:
- ExternalAccountCredentials
public static enum ExternalAccountCredentials.SubjectTokenTypes extends java.lang.Enum<ExternalAccountCredentials.SubjectTokenTypes>
Enum specifying values for the subjectTokenType field inExternalAccountCredentials
.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
value
-
Constructor Summary
Constructors Modifier Constructor Description private
SubjectTokenTypes(java.lang.String value)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalAccountCredentials.SubjectTokenTypes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExternalAccountCredentials.SubjectTokenTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AWS4
public static final ExternalAccountCredentials.SubjectTokenTypes AWS4
-
JWT
public static final ExternalAccountCredentials.SubjectTokenTypes JWT
-
SAML2
public static final ExternalAccountCredentials.SubjectTokenTypes SAML2
-
ID_TOKEN
public static final ExternalAccountCredentials.SubjectTokenTypes ID_TOKEN
-
-
Method Detail
-
values
public static ExternalAccountCredentials.SubjectTokenTypes[] 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 (ExternalAccountCredentials.SubjectTokenTypes c : ExternalAccountCredentials.SubjectTokenTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalAccountCredentials.SubjectTokenTypes 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
-
-