public enum EmploymentScene extends java.lang.Enum<EmploymentScene>
| Enum Constant and Description |
|---|
CATERING |
EVENT |
HOTEL |
LOGISTICS |
MANUFACTURING |
OTHERS |
RETAIL |
| Modifier and Type | Method and Description |
|---|---|
static EmploymentScene |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmploymentScene[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="LOGISTICS") public static final EmploymentScene LOGISTICS
@SerializedName(value="MANUFACTURING") public static final EmploymentScene MANUFACTURING
@SerializedName(value="HOTEL") public static final EmploymentScene HOTEL
@SerializedName(value="CATERING") public static final EmploymentScene CATERING
@SerializedName(value="EVENT") public static final EmploymentScene EVENT
@SerializedName(value="RETAIL") public static final EmploymentScene RETAIL
@SerializedName(value="OTHERS") public static final EmploymentScene OTHERS
public static EmploymentScene[] values()
for (EmploymentScene c : EmploymentScene.values()) System.out.println(c);
public static EmploymentScene 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