public enum AccountTypeMap extends Enum<AccountTypeMap>
| 限定符和类型 | 类和说明 |
|---|---|
static class |
AccountTypeMap.Adapter |
| 限定符和类型 | 方法和说明 |
|---|---|
static AccountTypeMap |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static AccountTypeMap |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static AccountTypeMap[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final AccountTypeMap CASH
public static final AccountTypeMap GIFT
public static final AccountTypeMap SHARED
public static final AccountTypeMap BANK
public static final AccountTypeMap UNION_GIFT
public static final AccountTypeMap MP_CASH
public static final AccountTypeMap MP_BANK
public static final AccountTypeMap MP_GIFT
public static final AccountTypeMap CREDIT_ROLL
public static final AccountTypeMap CREDIT_TEMPORARY
public static final AccountTypeMap CONTRACT_GIFT_VIRTUAL
public static final AccountTypeMap CONTRACT_ASSIGN_VIRTUAL
public static final AccountTypeMap COMPENSATE_VIRTUAL
public static final AccountTypeMap INTERNAL_QUOTA
public static final AccountTypeMap TEST_VIRTUAL
public static final AccountTypeMap UNSUPPORTED
public static AccountTypeMap[] values()
for (AccountTypeMap c : AccountTypeMap.values()) System.out.println(c);
public static AccountTypeMap valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getValue()
public String toString()
toString 在类中 Enum<AccountTypeMap>public static AccountTypeMap fromValue(String text)
Copyright © 2020. All rights reserved.