Initial commit
[jvcard.git] / src / be / nikiroo / jvcard / parsers / Format.java
1 package be.nikiroo.jvcard.parsers;
2
3 /**
4 * The parsing format for the contact data.
5 *
6 * @author niki
7 *
8 */
9 public enum Format {
10 /**
11 * vCard 2.1 file format. Will actually accept any version as input.
12 */
13 VCard21,
14 /**
15 * (Al)Pine Contact Book format, also called abook (usually .addressbook).
16 */
17 Abook
18 }