public enum TenantInfoEnum extends Enum<TenantInfoEnum>
| Enum Constant and Description |
|---|
EOC_MAP |
SECRET_KEY |
TENANT_ID |
USER_TOKEN |
| Modifier and Type | Method and Description |
|---|---|
static TenantInfoEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TenantInfoEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TenantInfoEnum TENANT_ID
public static final TenantInfoEnum SECRET_KEY
public static final TenantInfoEnum USER_TOKEN
public static final TenantInfoEnum EOC_MAP
public static TenantInfoEnum[] values()
for (TenantInfoEnum c : TenantInfoEnum.values()) System.out.println(c);
public static TenantInfoEnum 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 © 2023. All rights reserved.