com.microsoft.exchange.types
Enum FileAsMappingType

java.lang.Object
  extended by java.lang.Enum<FileAsMappingType>
      extended by com.microsoft.exchange.types.FileAsMappingType
All Implemented Interfaces:
Serializable, Comparable<FileAsMappingType>

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 Summary
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
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final FileAsMappingType NONE

LAST_COMMA_FIRST

public static final FileAsMappingType LAST_COMMA_FIRST

FIRST_SPACE_LAST

public static final FileAsMappingType FIRST_SPACE_LAST

COMPANY

public static final FileAsMappingType COMPANY

LAST_COMMA_FIRST_COMPANY

public static final FileAsMappingType LAST_COMMA_FIRST_COMPANY

COMPANY_LAST_FIRST

public static final FileAsMappingType COMPANY_LAST_FIRST

LAST_FIRST

public static final FileAsMappingType LAST_FIRST

LAST_FIRST_COMPANY

public static final FileAsMappingType LAST_FIRST_COMPANY

COMPANY_LAST_COMMA_FIRST

public static final FileAsMappingType COMPANY_LAST_COMMA_FIRST

LAST_FIRST_SUFFIX

public static final FileAsMappingType LAST_FIRST_SUFFIX

LAST_SPACE_FIRST_COMPANY

public static final FileAsMappingType LAST_SPACE_FIRST_COMPANY

COMPANY_LAST_SPACE_FIRST

public static final FileAsMappingType COMPANY_LAST_SPACE_FIRST

LAST_SPACE_FIRST

public static final FileAsMappingType LAST_SPACE_FIRST
Method Detail

values

public static FileAsMappingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (FileAsMappingType c : FileAsMappingType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FileAsMappingType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static FileAsMappingType fromValue(String v)


Copyright © 2012 Jasig. All Rights Reserved.