public enum AppraisalType extends java.lang.Enum<AppraisalType>
| Enum Constant and Description |
|---|
FEEDBACK
A 90º, 180º, 270º o 360º appraisal with or without goals.
|
NBOX
A N-Box appraisal.
|
NOM035G1
A NOM035 (Guide number I) appraisal,
|
NOM035G2G3
A NOM035 (Guide number II or III) appraisal,
|
WORKING_ENVIRONMENT
A work-environment appraisal.
|
| Modifier and Type | Method and Description |
|---|---|
static AppraisalType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppraisalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppraisalType FEEDBACK
public static final AppraisalType WORKING_ENVIRONMENT
public static final AppraisalType NBOX
public static final AppraisalType NOM035G1
public static final AppraisalType NOM035G2G3
public static AppraisalType[] values()
for (AppraisalType c : AppraisalType.values()) System.out.println(c);
public static AppraisalType 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