git://git.nikiroo.be
/
jvcard.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
New Jexer TUI now working (still needs work)
[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
}