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