package ezvcard;
import com.github.mangstadt.vinnie.SyntaxStyle;
/**
* Copyright 2011 George El-Haddad. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY GEORGE EL-HADDAD ''AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEORGE EL-HADDAD OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of George El-Haddad.
*/
/*
Copyright (c) 2012-2016, Michael Angstadt
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
/**
* Contains the vCard versions that this library supports.
* @author George El-Haddad
* @author Michael Angstadt
*/
public enum VCardVersion {
/**
* The original vCard specification.
* @see <a href="http://www.imc.org/pdi/vcard-21.rtf">2.1 specs</a>
*/
V2_1("2.1", SyntaxStyle.OLD, null),
/**
* Version 3.0.
* @see <a href="http://tools.ietf.org/html/rfc2426">RFC 2426</a>
*/
V3_0("3.0", SyntaxStyle.NEW, null),
/**
* The lastest specification.
* @see <a href="http://tools.ietf.org/html/rfc6350">RFC 6350</a>
*/
V4_0("4.0", SyntaxStyle.NEW, "urn:ietf:params:xml:ns:vcard-4.0");
private final String version;
private final SyntaxStyle syntaxStyle;
private final String xmlNamespace;
/**
* @param version the text representation
* @param xmlNamespace the xCard namespace or null if not defined
*/
private VCardVersion(String version, SyntaxStyle syntaxStyle, String xmlNamespace) {
this.version = version;
this.syntaxStyle = syntaxStyle;
this.xmlNamespace = xmlNamespace;
}
/**
* Gets the text representation of this version.
* @return the text representation
*/
public String getVersion() {
return version;
}
/**
* Gets the syntax style used by this version when writing to a plain-text
* data stream.
* @return the syntax style
*/
public SyntaxStyle getSyntaxStyle() {
return syntaxStyle;
}
/**
* Gets the XML namespace used by this version when writing to an xCard.
* @return the XML namespace or null if this version does not support xCard
*/
public String getXmlNamespace() {
return xmlNamespace;
}
/**
* Gets a {@link VCardVersion} instance based on the given text
* representation.
* @param value the text representation
* @return the object or null if not found
*/
public static VCardVersion valueOfByStr(String value) {
for (VCardVersion version : VCardVersion.values()) {
if (version.getVersion().equals(value)) {
return version;
}
}
return null;
}
/**
* Gets a {@link VCardVersion} instance based on the given XML namespace.
* @param ns the XML namespace
* @return the object or null if not found
*/
public static VCardVersion valueOfByXmlNamespace(String ns) {
for (VCardVersion version : VCardVersion.values()) {
String versionNs = version.getXmlNamespace();
if (versionNs != null && versionNs.equals(ns)) {
return version;
}
}
return null;
}
@Override
public String toString() {
return version;
}
}