com.microsoft.exchange.types
Enum PhoneNumberKeyType

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

public enum PhoneNumberKeyType
extends Enum<PhoneNumberKeyType>

Java class for PhoneNumberKeyType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="PhoneNumberKeyType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="AssistantPhone"/>
     <enumeration value="BusinessFax"/>
     <enumeration value="BusinessPhone"/>
     <enumeration value="BusinessPhone2"/>
     <enumeration value="Callback"/>
     <enumeration value="CarPhone"/>
     <enumeration value="CompanyMainPhone"/>
     <enumeration value="HomeFax"/>
     <enumeration value="HomePhone"/>
     <enumeration value="HomePhone2"/>
     <enumeration value="Isdn"/>
     <enumeration value="MobilePhone"/>
     <enumeration value="OtherFax"/>
     <enumeration value="OtherTelephone"/>
     <enumeration value="Pager"/>
     <enumeration value="PrimaryPhone"/>
     <enumeration value="RadioPhone"/>
     <enumeration value="Telex"/>
     <enumeration value="TtyTddPhone"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ASSISTANT_PHONE
           
BUSINESS_FAX
           
BUSINESS_PHONE
           
BUSINESS_PHONE_2
           
CALLBACK
           
CAR_PHONE
           
COMPANY_MAIN_PHONE
           
HOME_FAX
           
HOME_PHONE
           
HOME_PHONE_2
           
ISDN
           
MOBILE_PHONE
           
OTHER_FAX
           
OTHER_TELEPHONE
           
PAGER
           
PRIMARY_PHONE
           
RADIO_PHONE
           
TELEX
           
TTY_TDD_PHONE
           
 
Method Summary
static PhoneNumberKeyType fromValue(String v)
           
 String value()
           
static PhoneNumberKeyType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PhoneNumberKeyType[] 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

ASSISTANT_PHONE

public static final PhoneNumberKeyType ASSISTANT_PHONE

BUSINESS_FAX

public static final PhoneNumberKeyType BUSINESS_FAX

BUSINESS_PHONE

public static final PhoneNumberKeyType BUSINESS_PHONE

BUSINESS_PHONE_2

public static final PhoneNumberKeyType BUSINESS_PHONE_2

CALLBACK

public static final PhoneNumberKeyType CALLBACK

CAR_PHONE

public static final PhoneNumberKeyType CAR_PHONE

COMPANY_MAIN_PHONE

public static final PhoneNumberKeyType COMPANY_MAIN_PHONE

HOME_FAX

public static final PhoneNumberKeyType HOME_FAX

HOME_PHONE

public static final PhoneNumberKeyType HOME_PHONE

HOME_PHONE_2

public static final PhoneNumberKeyType HOME_PHONE_2

ISDN

public static final PhoneNumberKeyType ISDN

MOBILE_PHONE

public static final PhoneNumberKeyType MOBILE_PHONE

OTHER_FAX

public static final PhoneNumberKeyType OTHER_FAX

OTHER_TELEPHONE

public static final PhoneNumberKeyType OTHER_TELEPHONE

PAGER

public static final PhoneNumberKeyType PAGER

PRIMARY_PHONE

public static final PhoneNumberKeyType PRIMARY_PHONE

RADIO_PHONE

public static final PhoneNumberKeyType RADIO_PHONE

TELEX

public static final PhoneNumberKeyType TELEX

TTY_TDD_PHONE

public static final PhoneNumberKeyType TTY_TDD_PHONE
Method Detail

values

public static PhoneNumberKeyType[] 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 (PhoneNumberKeyType c : PhoneNumberKeyType.values())
    System.out.println(c);

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

valueOf

public static PhoneNumberKeyType 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 PhoneNumberKeyType fromValue(String v)


Copyright © 2012 Jasig. All Rights Reserved.