public enum SigningMethod extends Enum<SigningMethod>
| Enum Constant and Description |
|---|
HEADER_BASED_AUTH |
PROTOCOL_BASED_UNSIGNED |
PROTOCOL_STREAMING_SIGNING_AUTH |
UNSIGNED_PAYLOAD |
| Modifier and Type | Method and Description |
|---|---|
static SigningMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SigningMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigningMethod PROTOCOL_STREAMING_SIGNING_AUTH
public static final SigningMethod UNSIGNED_PAYLOAD
public static final SigningMethod PROTOCOL_BASED_UNSIGNED
public static final SigningMethod HEADER_BASED_AUTH
public static SigningMethod[] values()
for (SigningMethod c : SigningMethod.values()) System.out.println(c);
public static SigningMethod 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 © 2023. All rights reserved.