- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 30 of file CommentMap.java.
◆ CommentMap()
org.turro.contacts.CommentMap.CommentMap |
( |
Contact |
contact | ) |
|
◆ clear()
void org.turro.contacts.CommentMap.clear |
( |
| ) |
|
Definition at line 89 of file CommentMap.java.
90 throw new UnsupportedOperationException(
"Not supported yet.");
◆ containsKey()
boolean org.turro.contacts.CommentMap.containsKey |
( |
Object |
key | ) |
|
Definition at line 49 of file CommentMap.java.
51 if(c.getComment().contains(key.toString())) {
◆ containsValue()
boolean org.turro.contacts.CommentMap.containsValue |
( |
Object |
value | ) |
|
Definition at line 59 of file CommentMap.java.
60 throw new UnsupportedOperationException(
"Not supported yet.");
◆ entrySet()
Set<Entry<String, Comment> > org.turro.contacts.CommentMap.entrySet |
( |
| ) |
|
Definition at line 108 of file CommentMap.java.
109 HashSet<Entry<String, Comment>>
set =
new HashSet();
111 set.add(
new Entry<String, Comment>() {
113 public String getKey() {
114 return c.getComment();
117 public Comment getValue() {
121 public Comment setValue(Comment value) {
122 throw new UnsupportedOperationException(
"Not supported yet.");
◆ get()
Comment org.turro.contacts.CommentMap.get |
( |
Object |
key | ) |
|
Definition at line 64 of file CommentMap.java.
66 if(!c.isEmpty() && c.getComment().contains(key.toString())) {
◆ isEmpty()
boolean org.turro.contacts.CommentMap.isEmpty |
( |
| ) |
|
◆ keySet()
Set<String> org.turro.contacts.CommentMap.keySet |
( |
| ) |
|
Definition at line 94 of file CommentMap.java.
95 throw new UnsupportedOperationException(
"Not supported yet.");
◆ put()
Comment org.turro.contacts.CommentMap.put |
( |
String |
key, |
|
|
Comment |
value |
|
) |
| |
Definition at line 74 of file CommentMap.java.
75 throw new UnsupportedOperationException(
"Not supported yet.");
◆ putAll()
void org.turro.contacts.CommentMap.putAll |
( |
Map<? extends String, ? extends Comment > |
m | ) |
|
Definition at line 84 of file CommentMap.java.
85 throw new UnsupportedOperationException(
"Not supported yet.");
◆ remove()
Comment org.turro.contacts.CommentMap.remove |
( |
Object |
key | ) |
|
Definition at line 79 of file CommentMap.java.
80 throw new UnsupportedOperationException(
"Not supported yet.");
◆ size()
int org.turro.contacts.CommentMap.size |
( |
| ) |
|
◆ values()
Collection<Comment> org.turro.contacts.CommentMap.values |
( |
| ) |
|
Definition at line 99 of file CommentMap.java.
100 Collection<Comment> list =
new ArrayList<>();
The documentation for this class was generated from the following file: