public enum EqualityCheck extends Enum<EqualityCheck>
SkipWhenKafkaVersion and SkipWhenDatabaseVersion to define the type of skip rule.| Enum Constant and Description |
|---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static EqualityCheck |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EqualityCheck[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EqualityCheck LESS_THAN
public static final EqualityCheck LESS_THAN_OR_EQUAL
public static final EqualityCheck EQUAL
public static final EqualityCheck GREATER_THAN_OR_EQUAL
public static final EqualityCheck GREATER_THAN
public static EqualityCheck[] values()
for (EqualityCheck c : EqualityCheck.values()) System.out.println(c);
public static EqualityCheck 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 © 2021 JBoss by Red Hat. All rights reserved.