EmoneyReadinessStatus
Stay organized with collections
Save and categorize content based on your preferences.
E-money readiness status based on service provider and account.
Constant Summary
int |
ACCOUNT_MISMATCH
|
Indicates that the provided account does not
match the active account currently in Google Wallet. |
int |
APP_NOT_INSTALLED
|
Indicates that the Google Wallet app is not
installed. |
int |
APP_UPGRADE_NEEDED
|
Indicates that the current Google Wallet app
version or the Google Play services version needs to be upgraded. |
int |
FEATURE_NOT_SUPPORTED
|
Indicates that the e-money feature is not
supported yet or still waiting for launch. |
int |
NO_ACTIVE_ACCOUNT
|
Indicates that there is no active account
currently in Google Wallet. |
int |
READY
|
Indicates that the e-money feature is available
and ready to be used. |
Inherited Method Summary
From interface java.lang.annotation.Annotation
Constants
public static final int
ACCOUNT_MISMATCH
Indicates that the provided account does not match the active account currently in
Google Wallet.
Constant Value:
5
public static final int
APP_NOT_INSTALLED
Indicates that the Google Wallet app is not installed.
Constant Value:
2
public static final int
APP_UPGRADE_NEEDED
Indicates that the current Google Wallet app version or the Google Play services
version needs to be upgraded.
Constant Value:
3
public static final int
FEATURE_NOT_SUPPORTED
Indicates that the e-money feature is not supported yet or still waiting for
launch.
Constant Value:
0
public static final int
NO_ACTIVE_ACCOUNT
Indicates that there is no active account currently in Google Wallet.
Constant Value:
4
public static final int
READY
Indicates that the e-money feature is available and ready to be used.
Constant Value:
1
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License
, and code samples are licensed under the Apache 2.0 License
. For details, see the Google Developers Site Policies
. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[[["\u003cp\u003e\u003ccode\u003eEmoneyReadinessStatus\u003c/code\u003e is an annotation that indicates the readiness of an e-money feature based on service provider and account.\u003c/p\u003e\n"],["\u003cp\u003eIt provides various constants like \u003ccode\u003eREADY\u003c/code\u003e, \u003ccode\u003eACCOUNT_MISMATCH\u003c/code\u003e, \u003ccode\u003eAPP_NOT_INSTALLED\u003c/code\u003e, \u003ccode\u003eAPP_UPGRADE_NEEDED\u003c/code\u003e, \u003ccode\u003eFEATURE_NOT_SUPPORTED\u003c/code\u003e, and \u003ccode\u003eNO_ACTIVE_ACCOUNT\u003c/code\u003e to represent different readiness states.\u003c/p\u003e\n"],["\u003cp\u003eThese constants inform developers about the current status of Google Wallet or the e-money feature, enabling them to handle scenarios like app upgrades or account mismatches.\u003c/p\u003e\n"],["\u003cp\u003eBy using this annotation, developers can ensure a smooth and user-friendly experience when implementing e-money features in their applications.\u003c/p\u003e\n"]]],[],null,["# EmoneyReadinessStatus\n\npublic abstract @interface **EmoneyReadinessStatus** implements [Annotation](//developer.android.com/reference/java/lang/annotation/Annotation.html) \nE-money readiness status based on service provider and account. \n\n### Constant Summary\n\n|-----|--------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|\n| int | [ACCOUNT_MISMATCH](/android/reference/com/google/android/gms/pay/EmoneyReadinessStatus#ACCOUNT_MISMATCH) | Indicates that the provided account does not match the active account currently in Google Wallet. |\n| int | [APP_NOT_INSTALLED](/android/reference/com/google/android/gms/pay/EmoneyReadinessStatus#APP_NOT_INSTALLED) | Indicates that the Google Wallet app is not installed. |\n| int | [APP_UPGRADE_NEEDED](/android/reference/com/google/android/gms/pay/EmoneyReadinessStatus#APP_UPGRADE_NEEDED) | Indicates that the current Google Wallet app version or the Google Play services version needs to be upgraded. |\n| int | [FEATURE_NOT_SUPPORTED](/android/reference/com/google/android/gms/pay/EmoneyReadinessStatus#FEATURE_NOT_SUPPORTED) | Indicates that the e-money feature is not supported yet or still waiting for launch. |\n| int | [NO_ACTIVE_ACCOUNT](/android/reference/com/google/android/gms/pay/EmoneyReadinessStatus#NO_ACTIVE_ACCOUNT) | Indicates that there is no active account currently in Google Wallet. |\n| int | [READY](/android/reference/com/google/android/gms/pay/EmoneyReadinessStatus#READY) | Indicates that the e-money feature is available and ready to be used. |\n\n### Inherited Method Summary\n\nFrom interface java.lang.annotation.Annotation \n\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------|\n| abstract [Class](//developer.android.com/reference/java/lang/Class.html)\\\u003c? extends [Annotation](//developer.android.com/reference/java/lang/annotation/Annotation.html)\\\u003e | annotationType() |\n| abstract boolean | equals([Object](//developer.android.com/reference/java/lang/Object.html) arg0) |\n| abstract int | hashCode() |\n| abstract [String](//developer.android.com/reference/java/lang/String.html) | toString() |\n\nConstants\n---------\n\n#### public static final int\n**ACCOUNT_MISMATCH**\n\nIndicates that the provided account does not match the active account currently in\nGoogle Wallet. \nConstant Value: 5 \n\n#### public static final int\n**APP_NOT_INSTALLED**\n\nIndicates that the Google Wallet app is not installed. \nConstant Value: 2 \n\n#### public static final int\n**APP_UPGRADE_NEEDED**\n\nIndicates that the current Google Wallet app version or the Google Play services\nversion needs to be upgraded. \nConstant Value: 3 \n\n#### public static final int\n**FEATURE_NOT_SUPPORTED**\n\nIndicates that the e-money feature is not supported yet or still waiting for\nlaunch. \nConstant Value: 0 \n\n#### public static final int\n**NO_ACTIVE_ACCOUNT**\n\nIndicates that there is no active account currently in Google Wallet. \nConstant Value: 4 \n\n#### public static final int\n**READY**\n\nIndicates that the e-money feature is available and ready to be used. \nConstant Value: 1"]]