public enum DocType extends Enum<DocType>
| Enum Constant and Description |
|---|
BusinessLicense |
OrganizationCodeCertificate |
Others |
PowerOfAttorney |
SocialCreditCodeCertificate |
TaxRegistrationCertificate |
ThreeInOne |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getDesc() |
void |
setCode(int code) |
void |
setDesc(String desc) |
static DocType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocType ThreeInOne
public static final DocType BusinessLicense
public static final DocType OrganizationCodeCertificate
public static final DocType TaxRegistrationCertificate
public static final DocType SocialCreditCodeCertificate
public static final DocType PowerOfAttorney
public static final DocType Others
public static DocType[] values()
for (DocType c : DocType.values()) System.out.println(c);
public static DocType 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 int getCode()
public String getDesc()
public void setCode(int code)
public void setDesc(String desc)
Copyright © 2023. All rights reserved.