public enum FileAsMappingType extends Enum<FileAsMappingType>
Java class for FileAsMappingType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FileAsMappingType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="None"/>
<enumeration value="LastCommaFirst"/>
<enumeration value="FirstSpaceLast"/>
<enumeration value="Company"/>
<enumeration value="LastCommaFirstCompany"/>
<enumeration value="CompanyLastFirst"/>
<enumeration value="LastFirst"/>
<enumeration value="LastFirstCompany"/>
<enumeration value="CompanyLastCommaFirst"/>
<enumeration value="LastFirstSuffix"/>
<enumeration value="LastSpaceFirstCompany"/>
<enumeration value="CompanyLastSpaceFirst"/>
<enumeration value="LastSpaceFirst"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COMPANY |
COMPANY_LAST_COMMA_FIRST |
COMPANY_LAST_FIRST |
COMPANY_LAST_SPACE_FIRST |
FIRST_SPACE_LAST |
LAST_COMMA_FIRST |
LAST_COMMA_FIRST_COMPANY |
LAST_FIRST |
LAST_FIRST_COMPANY |
LAST_FIRST_SUFFIX |
LAST_SPACE_FIRST |
LAST_SPACE_FIRST_COMPANY |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static FileAsMappingType |
fromValue(String v) |
String |
value() |
static FileAsMappingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileAsMappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileAsMappingType NONE
public static final FileAsMappingType LAST_COMMA_FIRST
public static final FileAsMappingType FIRST_SPACE_LAST
public static final FileAsMappingType COMPANY
public static final FileAsMappingType LAST_COMMA_FIRST_COMPANY
public static final FileAsMappingType COMPANY_LAST_FIRST
public static final FileAsMappingType LAST_FIRST
public static final FileAsMappingType LAST_FIRST_COMPANY
public static final FileAsMappingType COMPANY_LAST_COMMA_FIRST
public static final FileAsMappingType LAST_FIRST_SUFFIX
public static final FileAsMappingType LAST_SPACE_FIRST_COMPANY
public static final FileAsMappingType COMPANY_LAST_SPACE_FIRST
public static final FileAsMappingType LAST_SPACE_FIRST
public static FileAsMappingType[] values()
for (FileAsMappingType c : FileAsMappingType.values()) System.out.println(c);
public static FileAsMappingType 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 value()
public static FileAsMappingType fromValue(String v)
Copyright © 2014 Jasig. All Rights Reserved.