public class MeCard extends Schema
| 限定符和类型 | 方法和说明 |
|---|---|
String |
generateString()
Generates code string.
|
String |
getAddress() |
String |
getEmail() |
String |
getName() |
String |
getTelephone() |
static MeCard |
parse(String meCardCode) |
Schema |
parseSchema(String code)
Parse qr code schema for given code string.
|
void |
setAddress(String address) |
void |
setEmail(String email) |
void |
setName(String name) |
void |
setTelephone(String telephone) |
String |
toString()
Returns the textual representation of this mecard of the form
MECARD:N:Doe,John;TEL:13035551212;EMAIL:john.doe@example.com;;
|
public MeCard()
public MeCard(String name)
public String getName()
public void setName(String name)
public String getAddress()
public void setAddress(String address)
public String getTelephone()
public void setTelephone(String telephone)
public String getEmail()
public void setEmail(String email)
public Schema parseSchema(String code)
SchemaparseSchema 在类中 Schemapublic String generateString()
SchemagenerateString 在类中 Schemapublic String toString()
MECARD:N:Doe,John;TEL:13035551212;EMAIL:john.doe@example.com;;
Copyright © 2019. All rights reserved.