public enum SubjectType extends Enum<SubjectType>
| Enum Constant and Description |
|---|
SUBJECT_TYPE_ENTERPRISE
企业
|
SUBJECT_TYPE_GOVERNMENT
政府机关
|
SUBJECT_TYPE_INDIVIDUAL
个体户
|
SUBJECT_TYPE_INSTITUTIONS
事业单位
|
SUBJECT_TYPE_MICRO
小微商户
|
SUBJECT_TYPE_OTHERS
社会组织
|
| Modifier and Type | Method and Description |
|---|---|
static SubjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubjectType SUBJECT_TYPE_INDIVIDUAL
营业执照上的主体类型一般为个体户、个体工商户、个体经营;
public static final SubjectType SUBJECT_TYPE_MICRO
public static final SubjectType SUBJECT_TYPE_ENTERPRISE
营业执照上的主体类型一般为有限公司、有限责任公司;
public static final SubjectType SUBJECT_TYPE_GOVERNMENT
包括各级、各类政府机关,如机关党委、税务、民政、人社、工商、商务、市监等;
public static final SubjectType SUBJECT_TYPE_INSTITUTIONS
包括国内各类事业单位,如:医疗、教育、学校等单位;
public static final SubjectType SUBJECT_TYPE_OTHERS
包括社会团体、民办非企业、基金会、基层群众性自治组织、农村集体经济组织等组织
public static SubjectType[] values()
for (SubjectType c : SubjectType.values()) System.out.println(c);
public static SubjectType 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.