@PublicApi public enum WhitelistType extends Enum<WhitelistType>
| Enum Constant and Description |
|---|
APPLICATION_LINK |
DOMAIN_NAME |
EXACT_URL |
REGULAR_EXPRESSION |
WILDCARD_EXPRESSION |
| Modifier and Type | Method and Description |
|---|---|
static WhitelistType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WhitelistType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WhitelistType APPLICATION_LINK
public static final WhitelistType DOMAIN_NAME
public static final WhitelistType EXACT_URL
public static final WhitelistType WILDCARD_EXPRESSION
public static final WhitelistType REGULAR_EXPRESSION
public static WhitelistType[] values()
for (WhitelistType c : WhitelistType.values()) System.out.println(c);
public static WhitelistType 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 © 2023 Atlassian. All Rights Reserved.