001 /*
002 * The MIT License
003 * Copyright (c) 2012 Microsoft Corporation
004 *
005 * Permission is hereby granted, free of charge, to any person obtaining a copy
006 * of this software and associated documentation files (the "Software"), to deal
007 * in the Software without restriction, including without limitation the rights
008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
009 * copies of the Software, and to permit persons to whom the Software is
010 * furnished to do so, subject to the following conditions:
011 *
012 * The above copyright notice and this permission notice shall be included in
013 * all copies or substantial portions of the Software.
014 *
015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
021 * THE SOFTWARE.
022 */
023
024 package microsoft.exchange.webservices.data.core.enumeration.property;
025
026 /**
027 * Defines phone number entries for a contact.
028 */
029 public enum PhoneNumberKey {
030
031 // The assistant's phone number.
032 /**
033 * The Assistant phone.
034 */
035 AssistantPhone,
036
037 // The business fax number.
038 /**
039 * The Business fax.
040 */
041 BusinessFax,
042
043 // The business phone number.
044 /**
045 * The Business phone.
046 */
047 BusinessPhone,
048
049 // The second business phone number.
050 /**
051 * The Business phone2.
052 */
053 BusinessPhone2,
054
055 // The callback number.
056 /**
057 * The Callback.
058 */
059 Callback,
060
061 // The car phone number.
062 /**
063 * The Car phone.
064 */
065 CarPhone,
066
067 // The company's main phone number.
068 /**
069 * The Company main phone.
070 */
071 CompanyMainPhone,
072
073 // The home fax number.
074 /**
075 * The Home fax.
076 */
077 HomeFax,
078
079 // The home phone number.
080 /**
081 * The Home phone.
082 */
083 HomePhone,
084
085 // The second home phone number.
086 /**
087 * The Home phone2.
088 */
089 HomePhone2,
090
091 // The ISDN number.
092 /**
093 * The Isdn.
094 */
095 Isdn,
096
097 // The mobile phone number.
098 /**
099 * The Mobile phone.
100 */
101 MobilePhone,
102
103 // An alternate fax number.
104 /**
105 * The Other fax.
106 */
107 OtherFax,
108
109 // An alternate phone number.
110 /**
111 * The Other telephone.
112 */
113 OtherTelephone,
114
115 // The pager number.
116 /**
117 * The Pager.
118 */
119 Pager,
120
121 // The primary phone number.
122 /**
123 * The Primary phone.
124 */
125 PrimaryPhone,
126
127 // The radio phone number.
128 /**
129 * The Radio phone.
130 */
131 RadioPhone,
132
133 // The Telex number.
134 /**
135 * The Telex.
136 */
137 Telex,
138
139 // The TTY/TTD phone number.
140 /**
141 * The Tty tdd phone.
142 */
143 TtyTddPhone
144 }