java.io.Serializable, java.lang.Comparable<TimelineCompareOp>@Private @Unstable public enum TimelineCompareOp extends java.lang.Enum<TimelineCompareOp>
| Enum Constant | Description |
|---|---|
EQUAL |
|
GREATER_OR_EQUAL |
|
GREATER_THAN |
|
LESS_OR_EQUAL |
|
LESS_THAN |
|
NOT_EQUAL |
| Modifier and Type | Method | Description |
|---|---|---|
static TimelineCompareOp |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TimelineCompareOp[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimelineCompareOp LESS_THAN
public static final TimelineCompareOp LESS_OR_EQUAL
public static final TimelineCompareOp EQUAL
public static final TimelineCompareOp NOT_EQUAL
public static final TimelineCompareOp GREATER_OR_EQUAL
public static final TimelineCompareOp GREATER_THAN
public static TimelineCompareOp[] values()
for (TimelineCompareOp c : TimelineCompareOp.values()) System.out.println(c);
public static TimelineCompareOp 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 nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.