- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 31 of file AddressMap.java.
◆ AddressMap()
org.turro.contacts.AddressMap.AddressMap |
( |
Contact |
contact | ) |
|
◆ clear()
void org.turro.contacts.AddressMap.clear |
( |
| ) |
|
Definition at line 90 of file AddressMap.java.
91 throw new UnsupportedOperationException(
"Not supported yet.");
◆ containsKey()
boolean org.turro.contacts.AddressMap.containsKey |
( |
Object |
key | ) |
|
Definition at line 50 of file AddressMap.java.
52 if(a.getDescription().equalsIgnoreCase(key.toString())) {
◆ containsValue()
boolean org.turro.contacts.AddressMap.containsValue |
( |
Object |
value | ) |
|
Definition at line 60 of file AddressMap.java.
61 throw new UnsupportedOperationException(
"Not supported yet.");
◆ entrySet()
Set<Entry<String, Address> > org.turro.contacts.AddressMap.entrySet |
( |
| ) |
|
Definition at line 113 of file AddressMap.java.
114 HashSet<Entry<String, Address>>
set =
new HashSet();
116 set.add(
new Entry<String, Address>() {
118 public String getKey() {
119 return a.getDescription();
122 public Address getValue() {
126 public Address setValue(Address value) {
127 throw new UnsupportedOperationException(
"Not supported yet.");
◆ get()
Address org.turro.contacts.AddressMap.get |
( |
Object |
key | ) |
|
Definition at line 65 of file AddressMap.java.
67 if(a.getDescription().equalsIgnoreCase(key.toString())) {
◆ isEmpty()
boolean org.turro.contacts.AddressMap.isEmpty |
( |
| ) |
|
◆ keySet()
Set<String> org.turro.contacts.AddressMap.keySet |
( |
| ) |
|
Definition at line 95 of file AddressMap.java.
96 Set<String>
set =
new HashSet<>();
98 set.add(a.getDescription());
◆ put()
Address org.turro.contacts.AddressMap.put |
( |
String |
key, |
|
|
Address |
value |
|
) |
| |
Definition at line 75 of file AddressMap.java.
76 throw new UnsupportedOperationException(
"Not supported yet.");
◆ putAll()
void org.turro.contacts.AddressMap.putAll |
( |
Map<? extends String, ? extends Address > |
m | ) |
|
Definition at line 85 of file AddressMap.java.
86 throw new UnsupportedOperationException(
"Not supported yet.");
◆ remove()
Address org.turro.contacts.AddressMap.remove |
( |
Object |
key | ) |
|
Definition at line 80 of file AddressMap.java.
81 throw new UnsupportedOperationException(
"Not supported yet.");
◆ size()
int org.turro.contacts.AddressMap.size |
( |
| ) |
|
◆ values()
Collection<Address> org.turro.contacts.AddressMap.values |
( |
| ) |
|
Definition at line 104 of file AddressMap.java.
105 Collection<Address> list =
new ArrayList<>();
The documentation for this class was generated from the following file: