public enum ApplicationReferenceSource extends Enum<ApplicationReferenceSource>
Enum Constant and Description |
---|
INTERNET |
NEWSPAPER |
OTHER |
REFERRED_TO_BY_AN_AGENCY |
REFERRED_TO_BY_AN_EMPLOYEE |
WORD_OF_MOUTH |
Modifier and Type | Method and Description |
---|---|
static ApplicationReferenceSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationReferenceSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationReferenceSource WORD_OF_MOUTH
public static final ApplicationReferenceSource REFERRED_TO_BY_AN_EMPLOYEE
public static final ApplicationReferenceSource REFERRED_TO_BY_AN_AGENCY
public static final ApplicationReferenceSource NEWSPAPER
public static final ApplicationReferenceSource OTHER
public static final ApplicationReferenceSource INTERNET
public static ApplicationReferenceSource[] values()
for (ApplicationReferenceSource c : ApplicationReferenceSource.values()) System.out.println(c);
public static ApplicationReferenceSource 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.