public enum TagFilterMode extends java.lang.Enum<TagFilterMode>
Enum Constant and Description |
---|
Filter1AndFilter2
Tag must match both filter 1 and filter 2
|
Filter1OrFilter2
Tag must match either filter 1 or filter 2
|
None
Do not apply any tag filters
|
OnlyFilter1
Apply only filter 1
|
OnlyFilter2
Apply only filter 2
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static TagFilterMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TagFilterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagFilterMode None
public static final TagFilterMode OnlyFilter1
public static final TagFilterMode OnlyFilter2
public static final TagFilterMode Filter1AndFilter2
public static final TagFilterMode Filter1OrFilter2
public static TagFilterMode[] values()
for (TagFilterMode c : TagFilterMode.values()) System.out.println(c);
public static TagFilterMode 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 nullpublic int getValue()