public enum FilteredDimensionType extends Enum<FilteredDimensionType>
| Enum Constant and Description |
|---|
LIST_FILTERED |
PREFIX_FILTERED |
REGEX_FILTERED |
| Modifier and Type | Method and Description |
|---|---|
static FilteredDimensionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilteredDimensionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilteredDimensionType LIST_FILTERED
public static final FilteredDimensionType REGEX_FILTERED
public static final FilteredDimensionType PREFIX_FILTERED
public static FilteredDimensionType[] values()
for (FilteredDimensionType c : FilteredDimensionType.values()) System.out.println(c);
public static FilteredDimensionType 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 © 2019. All rights reserved.