public static enum User.AuthenticationLevel extends java.lang.Enum<User.AuthenticationLevel>
| Enum Constant and Description |
|---|
none
A request made with no credentials.
|
user
A request that includes an Authorization header containing a user-specific token that IFTTT has issued to
your service.
|
| Modifier and Type | Method and Description |
|---|---|
static User.AuthenticationLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static User.AuthenticationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final User.AuthenticationLevel none
public static final User.AuthenticationLevel user
public static User.AuthenticationLevel[] values()
for (User.AuthenticationLevel c : User.AuthenticationLevel.values()) System.out.println(c);
public static User.AuthenticationLevel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null