public static enum UserProfile.Affil extends Enum<UserProfile.Affil>
| Modifier and Type | Method and Description |
|---|---|
static UserProfile.Affil |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserProfile.Affil[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserProfile.Affil CORE
public static final UserProfile.Affil IAC
public static final UserProfile.Affil CCI
public static final UserProfile.Affil AIP
public static final UserProfile.Affil ENGINEERING
public static final UserProfile.Affil ITP
public static UserProfile.Affil[] values()
for (UserProfile.Affil c : UserProfile.Affil.values()) System.out.println(c);
public static UserProfile.Affil 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 null