Package unit.java.sdk.model
Enum BusinessVertical
- java.lang.Object
-
- java.lang.Enum<BusinessVertical>
-
- unit.java.sdk.model.BusinessVertical
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BusinessVertical>
public enum BusinessVertical extends java.lang.Enum<BusinessVertical>
Gets or Sets BusinessVertical
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BusinessVerticalfromValue(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 BusinessVerticalvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BusinessVertical[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADULT_ENTERTAINMENT_DATING_OR_ESCORT_SERVICES
public static final BusinessVertical ADULT_ENTERTAINMENT_DATING_OR_ESCORT_SERVICES
-
AGRICULTURE_FORESTRY_FISHING_OR_HUNTING
public static final BusinessVertical AGRICULTURE_FORESTRY_FISHING_OR_HUNTING
-
ARTS_ENTERTAINMENT_AND_RECREATION
public static final BusinessVertical ARTS_ENTERTAINMENT_AND_RECREATION
-
BUSINESS_SUPPORT_OR_BUILDING_SERVICES
public static final BusinessVertical BUSINESS_SUPPORT_OR_BUILDING_SERVICES
-
CANNABIS
public static final BusinessVertical CANNABIS
-
CONSTRUCTION
public static final BusinessVertical CONSTRUCTION
-
DIRECT_MARKETING_OR_TELEMARKETING
public static final BusinessVertical DIRECT_MARKETING_OR_TELEMARKETING
-
EDUCATIONAL_SERVICES
public static final BusinessVertical EDUCATIONAL_SERVICES
-
FINANCIAL_SERVICES_CRYPTOCURRENCY
public static final BusinessVertical FINANCIAL_SERVICES_CRYPTOCURRENCY
-
FINANCIAL_SERVICES_DEBIT_COLLECTION_OR_CONSOLIDATION
public static final BusinessVertical FINANCIAL_SERVICES_DEBIT_COLLECTION_OR_CONSOLIDATION
-
FINANCIAL_SERVICES_MONEY_SERVICES_BUSINESS_OR_CURRENCY_EXCHANGE
public static final BusinessVertical FINANCIAL_SERVICES_MONEY_SERVICES_BUSINESS_OR_CURRENCY_EXCHANGE
-
FINANCIAL_SERVICES_OTHER
public static final BusinessVertical FINANCIAL_SERVICES_OTHER
-
FINANCIAL_SERVICES_PAYDAY_LENDING
public static final BusinessVertical FINANCIAL_SERVICES_PAYDAY_LENDING
-
GAMING_OR_GAMBLING
public static final BusinessVertical GAMING_OR_GAMBLING
-
HEALTH_CARE_AND_SOCIAL_ASSISTANCE
public static final BusinessVertical HEALTH_CARE_AND_SOCIAL_ASSISTANCE
-
HOSPITALITY_ACCOMMODATION_OR_FOOD_SERVICES
public static final BusinessVertical HOSPITALITY_ACCOMMODATION_OR_FOOD_SERVICES
-
LEGAL_ACCOUNTING_CONSULTING_OR_COMPUTER_PROGRAMMING
public static final BusinessVertical LEGAL_ACCOUNTING_CONSULTING_OR_COMPUTER_PROGRAMMING
-
MANUFACTURING
public static final BusinessVertical MANUFACTURING
-
MINING
public static final BusinessVertical MINING
-
NUTRACEUTICALS
public static final BusinessVertical NUTRACEUTICALS
-
PERSONAL_CARE_SERVICES
public static final BusinessVertical PERSONAL_CARE_SERVICES
-
PUBLIC_ADMINISTRATION
public static final BusinessVertical PUBLIC_ADMINISTRATION
-
REAL_ESTATE
public static final BusinessVertical REAL_ESTATE
-
RELIGIOUS_CIVIC_AND_SOCIAL_ORGANIZATIONS
public static final BusinessVertical RELIGIOUS_CIVIC_AND_SOCIAL_ORGANIZATIONS
-
REPAIR_AND_MAINTENANCE
public static final BusinessVertical REPAIR_AND_MAINTENANCE
-
RETAIL_TRADE
public static final BusinessVertical RETAIL_TRADE
-
TECHNOLOGY_MEDIA_OR_TELECOM
public static final BusinessVertical TECHNOLOGY_MEDIA_OR_TELECOM
-
TRANSPORTATION_OR_WAREHOUSING
public static final BusinessVertical TRANSPORTATION_OR_WAREHOUSING
-
UTILITIES
public static final BusinessVertical UTILITIES
-
WHOLESALE_TRADE
public static final BusinessVertical WHOLESALE_TRADE
-
-
Method Detail
-
values
public static BusinessVertical[] 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 (BusinessVertical c : BusinessVertical.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BusinessVertical 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<BusinessVertical>
-
fromValue
public static BusinessVertical 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
-
-