@InterfaceAudience.Private @InterfaceStability.Unstable public enum TimelineCompareOp extends Enum<TimelineCompareOp>
| Enum Constant and Description | 
|---|
| EQUAL | 
| GREATER_OR_EQUAL | 
| GREATER_THAN | 
| LESS_OR_EQUAL | 
| LESS_THAN | 
| NOT_EQUAL | 
| Modifier and Type | Method and Description | 
|---|---|
| static TimelineCompareOp | valueOf(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(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 © 2008–2023 Apache Software Foundation. All rights reserved.