public enum IndustryType extends java.lang.Enum<IndustryType>
| Modifier and Type | Method and Description |
|---|---|
static IndustryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndustryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="E_COMMERCE") public static final IndustryType E_COMMERCE
@SerializedName(value="LOVE_MARRIAGE") public static final IndustryType LOVE_MARRIAGE
@SerializedName(value="POTOGRAPHY") public static final IndustryType POTOGRAPHY
@SerializedName(value="EDUCATION") public static final IndustryType EDUCATION
@SerializedName(value="FINANCE") public static final IndustryType FINANCE
@SerializedName(value="TOURISM") public static final IndustryType TOURISM
@SerializedName(value="SKINCARE") public static final IndustryType SKINCARE
@SerializedName(value="FOOD") public static final IndustryType FOOD
@SerializedName(value="SPORT") public static final IndustryType SPORT
@SerializedName(value="JEWELRY_WATCH") public static final IndustryType JEWELRY_WATCH
@SerializedName(value="HEALTHCARE") public static final IndustryType HEALTHCARE
@SerializedName(value="BUSSINESS") public static final IndustryType BUSSINESS
@SerializedName(value="PARENTING") public static final IndustryType PARENTING
@SerializedName(value="CATERING") public static final IndustryType CATERING
@SerializedName(value="RETAIL") public static final IndustryType RETAIL
@SerializedName(value="SERVICES") public static final IndustryType SERVICES
@SerializedName(value="LAW") public static final IndustryType LAW
@SerializedName(value="ESTATE") public static final IndustryType ESTATE
@SerializedName(value="TRANSPORTATION") public static final IndustryType TRANSPORTATION
@SerializedName(value="ENERGY_SAVING") public static final IndustryType ENERGY_SAVING
@SerializedName(value="SECURITY") public static final IndustryType SECURITY
@SerializedName(value="BUILDING_MATERIAL") public static final IndustryType BUILDING_MATERIAL
@SerializedName(value="COMMUNICATION") public static final IndustryType COMMUNICATION
@SerializedName(value="MERCHANDISE") public static final IndustryType MERCHANDISE
@SerializedName(value="ASSOCIATION") public static final IndustryType ASSOCIATION
@SerializedName(value="COMMUNITY") public static final IndustryType COMMUNITY
@SerializedName(value="ONLINE_AVR") public static final IndustryType ONLINE_AVR
@SerializedName(value="WE_MEDIA") public static final IndustryType WE_MEDIA
@SerializedName(value="CAR") public static final IndustryType CAR
@SerializedName(value="SOFTWARE") public static final IndustryType SOFTWARE
@SerializedName(value="GAME") public static final IndustryType GAME
@SerializedName(value="CLOTHING") public static final IndustryType CLOTHING
@SerializedName(value="INDUSTY") public static final IndustryType INDUSTY
@SerializedName(value="AGRICULTURE") public static final IndustryType AGRICULTURE
@SerializedName(value="PUBLISHING_MEDIA") public static final IndustryType PUBLISHING_MEDIA
@SerializedName(value="HOME_DIGITAL") public static final IndustryType HOME_DIGITAL
public static IndustryType[] values()
for (IndustryType c : IndustryType.values()) System.out.println(c);
public static IndustryType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null