public static enum Protocol.TrustType extends Enum<Protocol.TrustType>
| Enum Constant and Description |
|---|
CROSS_DOMAIN
Trust cross domain URLs.
|
DATA_INJECTION
Trust URLs coming from data.
|
SCRIPT_INJECTION
Trust URLs coming from script.
|
URL
Trust url.
|
| Modifier and Type | Method and Description |
|---|---|
static Protocol.TrustType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Protocol.TrustType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Protocol.TrustType URL
public static final Protocol.TrustType CROSS_DOMAIN
public static final Protocol.TrustType DATA_INJECTION
public static final Protocol.TrustType SCRIPT_INJECTION
public static Protocol.TrustType[] values()
for (Protocol.TrustType c : Protocol.TrustType.values()) System.out.println(c);
public static Protocol.TrustType 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 © 2010 - 2020 Adobe. All Rights Reserved