Package unit.java.sdk.model
Enum ThreadBusinessAccountPurpose
- java.lang.Object
-
- java.lang.Enum<ThreadBusinessAccountPurpose>
-
- unit.java.sdk.model.ThreadBusinessAccountPurpose
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ThreadBusinessAccountPurpose>
public enum ThreadBusinessAccountPurpose extends java.lang.Enum<ThreadBusinessAccountPurpose>
Gets or Sets ThreadBusinessAccountPurpose
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThreadBusinessAccountPurposefromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()java.lang.StringtoUrlQueryString(java.lang.String prefix)Convert the instance into URL query string.static ThreadBusinessAccountPurposevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ThreadBusinessAccountPurpose[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RETAIL_SALES_IN_PERSON
public static final ThreadBusinessAccountPurpose RETAIL_SALES_IN_PERSON
-
ECOMMERCE_SALES
public static final ThreadBusinessAccountPurpose ECOMMERCE_SALES
-
CASH_HEAVY_INCOME_AND_OPERATIONS
public static final ThreadBusinessAccountPurpose CASH_HEAVY_INCOME_AND_OPERATIONS
-
IMPORT_EXPORT_TRADE_OPERATIONS
public static final ThreadBusinessAccountPurpose IMPORT_EXPORT_TRADE_OPERATIONS
-
PROFESSIONAL_SERVICES_NOT_HANDLING_FUNDS
public static final ThreadBusinessAccountPurpose PROFESSIONAL_SERVICES_NOT_HANDLING_FUNDS
-
PROFESSIONAL_SERVICES_HANDLING_FUNDS
public static final ThreadBusinessAccountPurpose PROFESSIONAL_SERVICES_HANDLING_FUNDS
-
HOLDING_OR_INVESTMENT_COMPANY_OPERATIONS
public static final ThreadBusinessAccountPurpose HOLDING_OR_INVESTMENT_COMPANY_OPERATIONS
-
PROPERTY_MANAGEMENT_OR_REAL_ESTATE_OPERATIONS
public static final ThreadBusinessAccountPurpose PROPERTY_MANAGEMENT_OR_REAL_ESTATE_OPERATIONS
-
CHARITABLE_OR_NON_PROFIT_ORGANIZATION_OPERATIONS
public static final ThreadBusinessAccountPurpose CHARITABLE_OR_NON_PROFIT_ORGANIZATION_OPERATIONS
-
CONSTRUCTION_AND_CONTRACTING_OPERATIONS
public static final ThreadBusinessAccountPurpose CONSTRUCTION_AND_CONTRACTING_OPERATIONS
-
COMMERCIAL_CASH_OPERATIONS
public static final ThreadBusinessAccountPurpose COMMERCIAL_CASH_OPERATIONS
-
FREIGHT_FORWARDING_OR_LOGISTICS_OPERATIONS
public static final ThreadBusinessAccountPurpose FREIGHT_FORWARDING_OR_LOGISTICS_OPERATIONS
-
THIRD_PARTY_PAYMENT_PROCESSING
public static final ThreadBusinessAccountPurpose THIRD_PARTY_PAYMENT_PROCESSING
-
TECHNOLOGY_STARTUP_OPERATIONS
public static final ThreadBusinessAccountPurpose TECHNOLOGY_STARTUP_OPERATIONS
-
WHOLESALE_DISTRIBUTION_OPERATIONS
public static final ThreadBusinessAccountPurpose WHOLESALE_DISTRIBUTION_OPERATIONS
-
FRANCHISE_OPERATION_OPERATIONS
public static final ThreadBusinessAccountPurpose FRANCHISE_OPERATION_OPERATIONS
-
HEALTHCARE_PROVIDER_OPERATIONS
public static final ThreadBusinessAccountPurpose HEALTHCARE_PROVIDER_OPERATIONS
-
EDUCATIONAL_INSTITUTION_OPERATIONS
public static final ThreadBusinessAccountPurpose EDUCATIONAL_INSTITUTION_OPERATIONS
-
-
Method Detail
-
values
public static ThreadBusinessAccountPurpose[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ThreadBusinessAccountPurpose c : ThreadBusinessAccountPurpose.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreadBusinessAccountPurpose valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ThreadBusinessAccountPurpose>
-
fromValue
public static ThreadBusinessAccountPurpose fromValue(java.lang.String value)
-
toUrlQueryString
public java.lang.String toUrlQueryString(java.lang.String prefix)
Convert the instance into URL query string.- Parameters:
prefix- prefix of the query string- Returns:
- URL query string
-
-