public enum BillingErrorCode extends Enum<BillingErrorCode>
| Enum Constant and Description | 
|---|
| FAILEDOPERATION_SUMMARYDATANOTREADY | 
| FAILEDOPERATION_TAGKEYNOTEXIST | 
| INTERNALERROR | 
| INTERNALERROR_GATEWAYERROR | 
| INVALIDPARAMETER | 
| INVALIDPARAMETERVALUE | 
| UNSUPPORTEDOPERATION | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getValue() | 
| static BillingErrorCode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static BillingErrorCode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BillingErrorCode FAILEDOPERATION_SUMMARYDATANOTREADY
public static final BillingErrorCode FAILEDOPERATION_TAGKEYNOTEXIST
public static final BillingErrorCode INTERNALERROR
public static final BillingErrorCode INTERNALERROR_GATEWAYERROR
public static final BillingErrorCode INVALIDPARAMETER
public static final BillingErrorCode INVALIDPARAMETERVALUE
public static final BillingErrorCode UNSUPPORTEDOPERATION
public static BillingErrorCode[] values()
for (BillingErrorCode c : BillingErrorCode.values()) System.out.println(c);
public static BillingErrorCode 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 nullpublic String getValue()
Copyright © 2021. All rights reserved.