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