public static enum BasicAuthorizationBuffer.Scope extends Enum<BasicAuthorizationBuffer.Scope>
| Enum Constant and Description |
|---|
AuthorizationHeader
The buffer contains the line "Authorization: Basic [base64Credential]"
|
AuthorizationHeaderValue
The buffer contains the value of the authorization header "Basic [base64Credential]"
|
Headers
The buffer contains all the HTTP headers.
|
| Modifier and Type | Method and Description |
|---|---|
static BasicAuthorizationBuffer.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicAuthorizationBuffer.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicAuthorizationBuffer.Scope Headers
public static final BasicAuthorizationBuffer.Scope AuthorizationHeader
public static final BasicAuthorizationBuffer.Scope AuthorizationHeaderValue
public static BasicAuthorizationBuffer.Scope[] values()
for (BasicAuthorizationBuffer.Scope c : BasicAuthorizationBuffer.Scope.values()) System.out.println(c);
public static BasicAuthorizationBuffer.Scope 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 nullCopyright © 2018 Alternet. All rights reserved.