public enum ApplicationRejectionReason extends Enum<ApplicationRejectionReason>
Enum Constant and Description |
---|
EDUCATION |
EXPERIENCE |
INTERVIEW |
OTHER |
REFERENCES |
TESTING |
Modifier and Type | Method and Description |
---|---|
static ApplicationRejectionReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationRejectionReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationRejectionReason TESTING
public static final ApplicationRejectionReason INTERVIEW
public static final ApplicationRejectionReason REFERENCES
public static final ApplicationRejectionReason EXPERIENCE
public static final ApplicationRejectionReason EDUCATION
public static final ApplicationRejectionReason OTHER
public static ApplicationRejectionReason[] values()
for (ApplicationRejectionReason c : ApplicationRejectionReason.values()) System.out.println(c);
public static ApplicationRejectionReason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2016. All rights reserved.