public class VCard extends Schema
See also http://zxing.appspot.com/generator/ and Contact Information
| Modifier and Type | Method and Description |
|---|---|
String |
generateString()
Generates code string.
|
String |
getAddress() |
String |
getCompany() |
String |
getEmail() |
String |
getName() |
String |
getNote() |
String |
getPhoneNumber() |
String |
getTitle() |
String |
getWebsite() |
static VCard |
parse(String code) |
Schema |
parseSchema(String code)
Parse qr code schema for given code string.
|
VCard |
setAddress(String address) |
VCard |
setCompany(String company) |
VCard |
setEmail(String email) |
VCard |
setName(String name) |
void |
setNote(String note) |
VCard |
setPhoneNumber(String phoneNumber) |
VCard |
setTitle(String title) |
VCard |
setWebsite(String website) |
String |
toString()
Returns the textual representation of this vcard of the form
|
public VCard()
public VCard(String name)
public String getName()
public String getCompany()
public String getPhoneNumber()
public String getTitle()
public String getEmail()
public String getAddress()
public String getWebsite()
public String getNote()
public void setNote(String note)
public Schema parseSchema(String code)
SchemaparseSchema in class Schemapublic String generateString()
SchemagenerateString in class Schemapublic String toString()
BEGIN:VCARD N:John Doe ORG:Company TITLE:Title TEL:1234 URL:www.example.org EMAIL:john.doe@example.org ADR:Street END:VCARD
Copyright © 2018. All rights reserved.