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