public enum BusinessTypeType extends Enum<BusinessTypeType>
| Enum Constant and Description |
|---|
CORPORATION |
GOVERNMENT |
INDIVIDUAL |
NONPROFIT |
PARTNERSHIP |
PROPRIETORSHIP |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static BusinessTypeType |
fromValue(String v) |
String |
getValue() |
static BusinessTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusinessTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusinessTypeType UNKNOWN
public static final BusinessTypeType INDIVIDUAL
public static final BusinessTypeType PROPRIETORSHIP
public static final BusinessTypeType PARTNERSHIP
public static final BusinessTypeType CORPORATION
public static final BusinessTypeType NONPROFIT
public static final BusinessTypeType GOVERNMENT
public static BusinessTypeType[] values()
for (BusinessTypeType c : BusinessTypeType.values()) System.out.println(c);
public static BusinessTypeType 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 String getValue()
public static BusinessTypeType fromValue(String v)
Copyright © 2015. All Rights Reserved.