BrightSide Workbench Full Report + Source Code
org.turro.plugin.contacts.IContactTreeMap< C, V > Class Template Reference
Inheritance diagram for org.turro.plugin.contacts.IContactTreeMap< C, V >:
Collaboration diagram for org.turro.plugin.contacts.IContactTreeMap< C, V >:

Public Member Functions

 IContactTreeMap (IContactNameComparator iContactNameComparator)
 
get (Object key)
 
put (IContact key, V value)
 
getById (String key)
 
putById (String key, V value)
 
void putAll (Map<? extends IContact, ? extends V > map)
 
 IContactTreeMap (IContactNameComparator iContactNameComparator)
 
get (Object key)
 
put (IContact key, V value)
 
getById (String key)
 
putById (String key, V value)
 
void putAll (Map<? extends IContact, ? extends V > map)
 

Detailed Description

Constructor & Destructor Documentation

◆ IContactTreeMap() [1/2]

Definition at line 30 of file elephant/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

30  {
31  super(iContactNameComparator);
32  }

◆ IContactTreeMap() [2/2]

Definition at line 30 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

30  {
31  super(iContactNameComparator);
32  }

Member Function Documentation

◆ get() [1/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.get ( Object  key)

Definition at line 35 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

35  {
36  return super.get(getRealKey(key));
37  }

◆ get() [2/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.get ( Object  key)

Definition at line 35 of file elephant/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

35  {
36  return super.get(getRealKey(key));
37  }

◆ getById() [1/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.getById ( String  key)

Definition at line 44 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

44  {
45  return super.get(getRealKeyById(key));
46  }

◆ getById() [2/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.getById ( String  key)

Definition at line 44 of file elephant/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

44  {
45  return super.get(getRealKeyById(key));
46  }

◆ put() [1/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.put ( IContact  key,
value 
)

Definition at line 40 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

40  {
41  return super.put(getRealKey(key), value);
42  }

◆ put() [2/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.put ( IContact  key,
value 
)

Definition at line 40 of file elephant/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

40  {
41  return super.put(getRealKey(key), value);
42  }

◆ putAll() [1/2]

void org.turro.plugin.contacts.IContactTreeMap< C, V >.putAll ( Map<? extends IContact, ? extends V >  map)

Definition at line 53 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

53  {
54  throw new UnsupportedOperationException("Use putIContact instead");
55  }

◆ putAll() [2/2]

void org.turro.plugin.contacts.IContactTreeMap< C, V >.putAll ( Map<? extends IContact, ? extends V >  map)

Definition at line 53 of file elephant/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

53  {
54  throw new UnsupportedOperationException("Use putIContact instead");
55  }

◆ putById() [1/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.putById ( String  key,
value 
)

Definition at line 48 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

48  {
49  return super.put(getRealKeyById(key), value);
50  }

◆ putById() [2/2]

V org.turro.plugin.contacts.IContactTreeMap< C, V >.putById ( String  key,
value 
)

Definition at line 48 of file elephant/src/main/java/org/turro/plugin/contacts/IContactTreeMap.java.

48  {
49  return super.put(getRealKeyById(key), value);
50  }

The documentation for this class was generated from the following file: