001 package ezvcard.property; 002 003 import java.util.EnumSet; 004 import java.util.List; 005 import java.util.Set; 006 007 import ezvcard.VCardVersion; 008 009 /* 010 Copyright (c) 2013, Michael Angstadt 011 All rights reserved. 012 013 Redistribution and use in source and binary forms, with or without 014 modification, are permitted provided that the following conditions are met: 015 016 1. Redistributions of source code must retain the above copyright notice, this 017 list of conditions and the following disclaimer. 018 2. Redistributions in binary form must reproduce the above copyright notice, 019 this list of conditions and the following disclaimer in the documentation 020 and/or other materials provided with the distribution. 021 022 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 023 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 024 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 025 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 026 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 027 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 028 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 029 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 030 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 031 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 032 033 The views and conclusions contained in the software and documentation are those 034 of the authors and should not be interpreted as representing official policies, 035 either expressed or implied, of the FreeBSD Project. 036 */ 037 038 /** 039 * A language that the person speaks. 040 * 041 * <p> 042 * <b>Code sample</b> 043 * </p> 044 * 045 * <pre class="brush:java"> 046 * VCard vcard = new VCard(); 047 * Language lang = new Language("en"); 048 * lang.setPref(1); //most preferred 049 * vcard.addLanguage(lang); 050 * lang = new Language("fr"); 051 * lang.setPref(2); //second-most preferred 052 * vcard.addLanguage(lang); 053 * </pre> 054 * 055 * <p> 056 * <b>Property name:</b> {@code LANG} 057 * </p> 058 * <p> 059 * <b>Supported versions:</b> {@code 4.0} 060 * </p> 061 * 062 * @author Michael Angstadt 063 */ 064 public class Language extends TextProperty implements HasAltId { 065 /** 066 * Creates a language property. 067 * @param language the language (e.g. "en-ca") 068 */ 069 public Language(String language) { 070 super(language); 071 } 072 073 @Override 074 public Set<VCardVersion> _supportedVersions() { 075 return EnumSet.of(VCardVersion.V4_0); 076 } 077 078 /** 079 * Gets the TYPE parameter. 080 * <p> 081 * <b>Supported versions:</b> {@code 4.0} 082 * </p> 083 * @return the TYPE value (typically, this will be either "work" or "home") 084 * or null if it doesn't exist 085 */ 086 public String getType() { 087 return parameters.getType(); 088 } 089 090 /** 091 * Sets the TYPE parameter. 092 * <p> 093 * <b>Supported versions:</b> {@code 4.0} 094 * </p> 095 * @param type the TYPE value (this should be either "work" or "home") or 096 * null to remove 097 */ 098 public void setType(String type) { 099 parameters.setType(type); 100 } 101 102 @Override 103 public List<Integer[]> getPids() { 104 return super.getPids(); 105 } 106 107 @Override 108 public void addPid(int localId, int clientPidMapRef) { 109 super.addPid(localId, clientPidMapRef); 110 } 111 112 @Override 113 public void removePids() { 114 super.removePids(); 115 } 116 117 @Override 118 public Integer getPref() { 119 return super.getPref(); 120 } 121 122 @Override 123 public void setPref(Integer pref) { 124 super.setPref(pref); 125 } 126 127 //@Override 128 public String getAltId() { 129 return parameters.getAltId(); 130 } 131 132 //@Override 133 public void setAltId(String altId) { 134 parameters.setAltId(altId); 135 } 136 }