public enum CitizenshipTypes extends Enum<CitizenshipTypes>
| Enum Constant and Description |
|---|
NON_US_CITIZEN_WITH_TEMPORARY_VISA |
PERMANENT_RESIDENT_OF_US |
PERMANENT_RESIDENT_OF_US_PENDING |
US_CITIZEN_OR_NONCITIZEN_NATIONAL |
| Modifier and Type | Method and Description |
|---|---|
String |
getCitizenShip() |
static CitizenshipTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CitizenshipTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CitizenshipTypes US_CITIZEN_OR_NONCITIZEN_NATIONAL
public static final CitizenshipTypes PERMANENT_RESIDENT_OF_US
public static final CitizenshipTypes NON_US_CITIZEN_WITH_TEMPORARY_VISA
public static final CitizenshipTypes PERMANENT_RESIDENT_OF_US_PENDING
public static CitizenshipTypes[] values()
for (CitizenshipTypes c : CitizenshipTypes.values()) System.out.println(c);
public static CitizenshipTypes 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 nullpublic String getCitizenShip()
Copyright © 2013 The Kuali Foundation. All Rights Reserved.