public static enum AdSettings.MultiprocessSupportMode extends java.lang.Enum<AdSettings.MultiprocessSupportMode>
Enum Constant and Description |
---|
MULTIPROCESS_SUPPORT_MODE_AUTO
Value for
AdSettings.setMultiprocessSupportMode(MultiprocessSupportMode) :
use the separate process for loading ads if possible. |
MULTIPROCESS_SUPPORT_MODE_OFF
Value for
AdSettings.setMultiprocessSupportMode(MultiprocessSupportMode) :
don't allow Audience Network SDK to create a new process for loading ads. |
MULTIPROCESS_SUPPORT_MODE_ON
Value for
AdSettings.setMultiprocessSupportMode(MultiprocessSupportMode) :
use the separate process for loading ads for debug builds
and for release if possible. |
Modifier and Type | Field and Description |
---|---|
static long |
serialVersionUID |
Modifier and Type | Method and Description |
---|---|
static AdSettings.MultiprocessSupportMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdSettings.MultiprocessSupportMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdSettings.MultiprocessSupportMode MULTIPROCESS_SUPPORT_MODE_ON
AdSettings.setMultiprocessSupportMode(MultiprocessSupportMode)
:
use the separate process for loading ads for debug builds
and for release if possible.public static final AdSettings.MultiprocessSupportMode MULTIPROCESS_SUPPORT_MODE_AUTO
AdSettings.setMultiprocessSupportMode(MultiprocessSupportMode)
:
use the separate process for loading ads if possible.public static final AdSettings.MultiprocessSupportMode MULTIPROCESS_SUPPORT_MODE_OFF
AdSettings.setMultiprocessSupportMode(MultiprocessSupportMode)
:
don't allow Audience Network SDK to create a new process for loading ads.public static final long serialVersionUID
public static AdSettings.MultiprocessSupportMode[] values()
for (AdSettings.MultiprocessSupportMode c : AdSettings.MultiprocessSupportMode.values()) System.out.println(c);
public static AdSettings.MultiprocessSupportMode 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