public enum UserInfoType extends Enum<UserInfoType>
| Enum Constant and Description |
|---|
TENANT_CPY_CODE |
TENANT_CPY_TAX_NUM |
TENANT_ORG_CODE |
TENANT_ORG_ID |
USER_CPY_CODE |
USER_CPY_TAX_NUM |
USER_ORG_CODE |
USER_ORG_ID |
| Modifier and Type | Method and Description |
|---|---|
static UserInfoType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserInfoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserInfoType USER_ORG_ID
public static final UserInfoType USER_ORG_CODE
public static final UserInfoType USER_CPY_CODE
public static final UserInfoType USER_CPY_TAX_NUM
public static final UserInfoType TENANT_ORG_ID
public static final UserInfoType TENANT_ORG_CODE
public static final UserInfoType TENANT_CPY_CODE
public static final UserInfoType TENANT_CPY_TAX_NUM
public static UserInfoType[] values()
for (UserInfoType c : UserInfoType.values()) System.out.println(c);
public static UserInfoType 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 nullCopyright © 2024. All rights reserved.