| 1 73 package com.ivata.groupware.business.addressbook.telecomaddress; 74 75 76 86 public class TelecomAddressConstants { 87 88 91 public final static int TYPE_HOME = 0; 92 93 96 public final static int TYPE_WORK = 1; 97 98 101 public final static int TYPE_MOBILE = 2; 102 103 106 public final static int TYPE_FAX = 3; 107 108 111 public final static int TYPE_EMAIL = 4; 112 113 116 public final static int TYPE_URL = 5; 117 118 123 private final static String [ ] typeNames = { 124 "person.label.telecomaddress.home", 125 "person.label.telecomaddress.work", 126 "person.label.telecomaddress.mobile", 127 "person.label.telecomaddress.fax", 128 "person.label.telecomaddress.email", 129 "person.label.telecomaddress.uRL"}; 130 131 136 public static int countTypes() { 137 return typeNames.length; 138 } 139 140 148 public final static String getTypeName(int type) { 149 return typeNames[type]; 150 } 151 } 152 | Popular Tags |