@InterfaceAudience.Private @InterfaceStability.Unstable public static enum TimelineFilter.TimelineFilterType extends Enum<TimelineFilter.TimelineFilterType>
| Enum Constant and Description | 
|---|
| COMPAREFilter which is used for key-value comparison. | 
| EXISTSFilter which checks existence of a value. | 
| KEY_VALUEFilter which is used for checking key-value equality. | 
| KEY_VALUESFilter which is used for checking key-multiple values equality. | 
| LISTCombines multiple filters. | 
| PREFIXFilter which matches prefix for a config or a metric. | 
| Modifier and Type | Method and Description | 
|---|---|
| static TimelineFilter.TimelineFilterType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TimelineFilter.TimelineFilterType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TimelineFilter.TimelineFilterType LIST
public static final TimelineFilter.TimelineFilterType COMPARE
public static final TimelineFilter.TimelineFilterType KEY_VALUE
public static final TimelineFilter.TimelineFilterType KEY_VALUES
public static final TimelineFilter.TimelineFilterType PREFIX
public static final TimelineFilter.TimelineFilterType EXISTS
public static TimelineFilter.TimelineFilterType[] values()
for (TimelineFilter.TimelineFilterType c : TimelineFilter.TimelineFilterType.values()) System.out.println(c);
public static TimelineFilter.TimelineFilterType 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.