java.io.Serializable, java.lang.Comparable<TimelineFilter.TimelineFilterType>@Private @Unstable public static enum TimelineFilter.TimelineFilterType extends java.lang.Enum<TimelineFilter.TimelineFilterType>
| Enum Constant | Description |
|---|---|
COMPARE |
Filter which is used for key-value comparison.
|
EXISTS |
Filter which checks existence of a value.
|
KEY_VALUE |
Filter which is used for checking key-value equality.
|
KEY_VALUES |
Filter which is used for checking key-multiple values equality.
|
LIST |
Combines multiple filters.
|
PREFIX |
Filter which matches prefix for a config or a metric.
|
| Modifier and Type | Method | Description |
|---|---|---|
static TimelineFilter.TimelineFilterType |
valueOf(java.lang.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(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.