Package-level declarations

Base package containing the VCard itself as well as the parse function to parse vCard Strings into vCard Objects and the export function to export a vCard Object as a vCard String.

Types

Link copied to clipboard
class VCard(formattedName: String? = null)

Object that represents a vCard

Functions

Link copied to clipboard
fun export(vCard: VCard, lineWidthLimit: Int = 75): String

Exports the given VCard as RFC 6350 conform string.

Link copied to clipboard
fun parse(input: String): VCard

Parses the given string into a VCard object.