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