public enum BlockedReason extends java.lang.Enum<BlockedReason>
Enum Constant and Description |
---|
collapsedbyClient |
contentType |
csp |
inspector |
mixedContent |
origin |
other |
subresourceFilter |
Modifier and Type | Method and Description |
---|---|
static BlockedReason |
fromString(java.lang.String s) |
java.lang.String |
getReason() |
static BlockedReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockedReason other
public static final BlockedReason csp
public static final BlockedReason mixedContent
public static final BlockedReason origin
public static final BlockedReason inspector
public static final BlockedReason subresourceFilter
public static final BlockedReason contentType
public static final BlockedReason collapsedbyClient
public static BlockedReason[] values()
for (BlockedReason c : BlockedReason.values()) System.out.println(c);
public static BlockedReason 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 java.lang.String getReason()
public static BlockedReason fromString(java.lang.String s)