public class VCard extends Schema
See also http://zxing.appspot.com/generator/ and Contact Information
| 限定符和类型 | 方法和说明 |
|---|---|
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
BEGIN:VCARD N:John Doe ORG:Company TITLE:Title TEL:1234 URL:www.example.org
EMAIL:john.doe@example.org ADR:Street END:VCARD
|
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 在类中 Schemapublic String generateString()
SchemagenerateString 在类中 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 © 2019. All rights reserved.