public static enum ApplicationProperties.ExclusionFilter extends java.lang.Enum<ApplicationProperties.ExclusionFilter>
| Enum Constant and Description |
|---|
CONTAIN
Does the name of a mod contain the user specified string?
|
EITHER
Does any of the above hit for the user specified string/regex?
|
END
Does the name of a mod end with the user specified string?
|
REGEX
Does the name of a mod match the user specified regex?
|
START
Does the name of a mod start with the user specified string?
|
| Modifier and Type | Method and Description |
|---|---|
static ApplicationProperties.ExclusionFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationProperties.ExclusionFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationProperties.ExclusionFilter START
public static final ApplicationProperties.ExclusionFilter END
public static final ApplicationProperties.ExclusionFilter CONTAIN
public static final ApplicationProperties.ExclusionFilter REGEX
public static final ApplicationProperties.ExclusionFilter EITHER
public static ApplicationProperties.ExclusionFilter[] values()
for (ApplicationProperties.ExclusionFilter c : ApplicationProperties.ExclusionFilter.values()) System.out.println(c);
public static ApplicationProperties.ExclusionFilter 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 null