Enum InMobiAdRequestStatus.StatusCode
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum InMobiAdRequestStatus.StatusCode extends Enum<InMobiAdRequestStatus.StatusCode>
Collection of codes indicating the status of an ad request.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<InMobiAdRequestStatus.StatusCode>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_ERRORNo error.
NETWORK_UNREACHABLEThe ad network is not reachable.
NO_FILLThe ad request succeeded but no ad was returned.
REQUEST_INVALIDThe ad network could not handle this request.
REQUEST_PENDINGAn ad request is already pending response.
REQUEST_TIMED_OUTAn ad request timed out waiting for a response from the network.
INTERNAL_ERRORAn internal SDK error occurred.
SERVER_ERRORAn Ad Server error occurred.
AD_ACTIVEUser clicked on an ad and its in the expanded/resized state.
EARLY_REFRESH_REQUESTUser attempted to load an ad again before the minimum refresh request interval
AD_NO_LONGER_AVAILABLEThe availability of ad markup backing this ad unit changed.
MISSING_REQUIRED_DEPENDENCIESDependent libraries are missing for this ad format
REPETITIVE_LOADMultiple load on the same object is called
GDPR_COMPLIANCE_ENFORCEDGDPR compliance enforced.
GET_SIGNALS_CALLED_WHILE_LOADINGLoad() called after load(byte[])
LOAD_WITH_RESPONSE_CALLED_WHILE_LOADINGINVALID_RESPONSE_IN_LOADMONETIZATION_DISABLEDLoad() called when monetization is disabled
CALLED_FROM_WRONG_THREADAn API called from non-ui thread
CONFIGURATION_ERRORload(byte[]) or getSignals() called with invalid configuration
LOW_MEMORYFEATURE_DISABLEDFeature is Disabled
DEVICE_AUDIO_LEVEL_LOWDevice Audio Level is low
-
Method Summary
Modifier and Type Method Description final InMobiAdRequestStatus.StatusCodevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<InMobiAdRequestStatus.StatusCode>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<InMobiAdRequestStatus.StatusCode>getEntries()Collection of codes indicating the status of an ad request. -
-
Method Detail
-
valueOf
final InMobiAdRequestStatus.StatusCode valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<InMobiAdRequestStatus.StatusCode> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<InMobiAdRequestStatus.StatusCode> getEntries()
Collection of codes indicating the status of an ad request.
-
-
-
-