public static enum JwtClaims.RegisteredClaim extends Enum<JwtClaims.RegisteredClaim>
| Enum Constant and Description |
|---|
AUDIENCE |
EXPIRY |
ISSUED_AT |
ISSUER |
JWT_ID |
NOT_BEFORE |
SUBJECT |
| Modifier and Type | Method and Description |
|---|---|
String |
key() |
static JwtClaims.RegisteredClaim |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JwtClaims.RegisteredClaim[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JwtClaims.RegisteredClaim ISSUER
public static final JwtClaims.RegisteredClaim SUBJECT
public static final JwtClaims.RegisteredClaim AUDIENCE
public static final JwtClaims.RegisteredClaim EXPIRY
public static final JwtClaims.RegisteredClaim NOT_BEFORE
public static final JwtClaims.RegisteredClaim ISSUED_AT
public static final JwtClaims.RegisteredClaim JWT_ID
public static JwtClaims.RegisteredClaim[] values()
for (JwtClaims.RegisteredClaim c : JwtClaims.RegisteredClaim.values()) System.out.println(c);
public static JwtClaims.RegisteredClaim valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String key()
Copyright © 2017 Atlassian. All rights reserved.