public enum SegmentConditions extends Enum<SegmentConditions>
| Enum Constant and Description |
|---|
CONTAINS |
EQUAL |
GREATER_THAN |
GREATER_THAN_INCLUSIVE |
LESS_THAN |
LESS_THAN_INCLUSIVE |
NOT_CONTAINS |
NOT_EQUAL |
PERCENTAGE_SPLIT |
REGEX |
| Modifier and Type | Method and Description |
|---|---|
static SegmentConditions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SegmentConditions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SegmentConditions EQUAL
public static final SegmentConditions GREATER_THAN
public static final SegmentConditions LESS_THAN
public static final SegmentConditions LESS_THAN_INCLUSIVE
public static final SegmentConditions CONTAINS
public static final SegmentConditions GREATER_THAN_INCLUSIVE
public static final SegmentConditions NOT_CONTAINS
public static final SegmentConditions NOT_EQUAL
public static final SegmentConditions REGEX
public static final SegmentConditions PERCENTAGE_SPLIT
public static SegmentConditions[] values()
for (SegmentConditions c : SegmentConditions.values()) System.out.println(c);
public static SegmentConditions 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 © 2022. All rights reserved.