◆ ImporterEntry()
org.turro.contacts.importer.ImporterEntry.ImporterEntry |
( |
String |
email, |
|
|
String |
name, |
|
|
String |
relatedTo, |
|
|
String |
position |
|
) |
| |
Definition at line 45 of file ImporterEntry.java.
48 this.relatedTo = relatedTo;
49 this.position = position;
◆ equals()
boolean org.turro.contacts.importer.ImporterEntry.equals |
( |
Object |
obj | ) |
|
Definition at line 165 of file ImporterEntry.java.
172 if (getClass() != obj.getClass()) {
176 return Objects.equals(this.email, other.email);
ImporterEntry(String email, String name, String relatedTo, String position)
◆ from()
static ImporterEntry org.turro.contacts.importer.ImporterEntry.from |
( |
Map< String, String > |
values | ) |
|
|
static |
Definition at line 150 of file ImporterEntry.java.
151 return new ImporterEntry(values.get(
"email"), values.get(
"name"),
152 values.get(
"relatedTo"), values.get(
"position"));
◆ getContact()
Contact org.turro.contacts.importer.ImporterEntry.getContact |
( |
| ) |
|
◆ getEmail()
String org.turro.contacts.importer.ImporterEntry.getEmail |
( |
| ) |
|
◆ getFinalName()
String org.turro.contacts.importer.ImporterEntry.getFinalName |
( |
| ) |
|
◆ getName()
String org.turro.contacts.importer.ImporterEntry.getName |
( |
| ) |
|
◆ getPosition()
String org.turro.contacts.importer.ImporterEntry.getPosition |
( |
| ) |
|
◆ getPossibleRelated()
Contact org.turro.contacts.importer.ImporterEntry.getPossibleRelated |
( |
| ) |
|
◆ getRelatedTo()
String org.turro.contacts.importer.ImporterEntry.getRelatedTo |
( |
| ) |
|
◆ getType()
RelationType org.turro.contacts.importer.ImporterEntry.getType |
( |
| ) |
|
◆ hashCode()
int org.turro.contacts.importer.ImporterEntry.hashCode |
( |
| ) |
|
◆ isDuplicated()
boolean org.turro.contacts.importer.ImporterEntry.isDuplicated |
( |
| ) |
|
◆ rebuild()
void org.turro.contacts.importer.ImporterEntry.rebuild |
( |
| ) |
|
◆ setContact()
void org.turro.contacts.importer.ImporterEntry.setContact |
( |
Contact |
contact | ) |
|
◆ setPosition()
void org.turro.contacts.importer.ImporterEntry.setPosition |
( |
String |
position | ) |
|
◆ setPossibleRelated()
void org.turro.contacts.importer.ImporterEntry.setPossibleRelated |
( |
Contact |
possibleRelated | ) |
|
◆ setType()
void org.turro.contacts.importer.ImporterEntry.setType |
( |
RelationType |
type | ) |
|
The documentation for this class was generated from the following file: