public static enum CompareCondition.Condition extends java.lang.Enum<CompareCondition.Condition>
| Enum Constant and Description |
|---|
DIGEST_EQUAL
current value's digest must equal provided digest
|
DIGEST_NOT_EQUAL
current value's digest must not equal provided digest
|
VALUE_EQUAL
current value must equal provided value
|
VALUE_NOT_EQUAL
current value must not equal provided value
|
| Modifier and Type | Method and Description |
|---|---|
Protocol.Keyword |
getKeyword()
The protocol keyword to emit for this condition.
|
static CompareCondition.Condition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompareCondition.Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareCondition.Condition VALUE_EQUAL
public static final CompareCondition.Condition VALUE_NOT_EQUAL
public static final CompareCondition.Condition DIGEST_EQUAL
public static final CompareCondition.Condition DIGEST_NOT_EQUAL
public static CompareCondition.Condition[] values()
for (CompareCondition.Condition c : CompareCondition.Condition.values()) System.out.println(c);
public static CompareCondition.Condition 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 nullpublic Protocol.Keyword getKeyword()
Copyright © 2025. All rights reserved.