public static enum Runtime.Property extends java.lang.Enum<Runtime.Property>
Runtime.setProperty(Property property_id, Object value)
See Runtime.getProperty(Property property_id)
Enum Constant and Description |
---|
MS3_ACCEPT_HOSTNAME_MISMATCH
Allow host mismatch in certificates in MS3 server interaction.
|
MS3_ACCEPT_SELF_SIGNED_CERTS
Allow self signed certificates in MS3 server interaction.
|
PROXY_DASH_CONTENT_LENGTH
ContentLength computation for DASH media in Playlist Proxy.
|
ROOTED_OK
When set to true, the run-time will execute on root'ed
Android devices.
|
STORAGE_DIRECTORY
DRM storage directory.
|
Modifier and Type | Method and Description |
---|---|
static Runtime.Property |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Runtime.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Runtime.Property MS3_ACCEPT_SELF_SIGNED_CERTS
public static final Runtime.Property MS3_ACCEPT_HOSTNAME_MISMATCH
public static final Runtime.Property STORAGE_DIRECTORY
public static final Runtime.Property PROXY_DASH_CONTENT_LENGTH
public static final Runtime.Property ROOTED_OK
public static Runtime.Property[] values()
for (Runtime.Property c : Runtime.Property.values()) System.out.println(c);
public static Runtime.Property 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