public enum RequestChecksumCalculation extends Enum<RequestChecksumCalculation>
| Enum Constant and Description |
|---|
WHEN_REQUIRED
Checksum will only be calculated for request if required.
|
WHEN_SUPPORTED
Checksum will be calculated for request if supported.
|
| Modifier and Type | Method and Description |
|---|---|
static RequestChecksumCalculation |
fromValue(String s)
Returns the appropriate RequestChecksumCalculation value after parsing the parameter.
|
static RequestChecksumCalculation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestChecksumCalculation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestChecksumCalculation WHEN_SUPPORTED
public static final RequestChecksumCalculation WHEN_REQUIRED
public static RequestChecksumCalculation[] values()
for (RequestChecksumCalculation c : RequestChecksumCalculation.values()) System.out.println(c);
public static RequestChecksumCalculation 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 static RequestChecksumCalculation fromValue(String s)
s - RequestChecksumCalculation in String format.IllegalArgumentException - Unrecognized value for request checksum calculation.Copyright © 2026. All rights reserved.