trait
AttributeMap extends AnyRef
Abstract Value Members
-
abstract
def
apply(key: String): Any
-
abstract
def
get(key: String): Option[Any]
-
abstract
def
keySet: Set[String]
-
abstract
def
remove(key: String): Option[Any]
-
abstract
def
update(key: String, value: Any): Unit
Concrete Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
getOrUpdate[T](name: String, value: ⇒ T): T
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
list[T](name: String): ListBuffer[T]
-
def
map[K, V](name: String): ListMap[K, V]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
set[T](name: String): LinkedHashSet[T]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Represents a small map like thing which is easy to implement on top of any attribute storage mechanism without having to implement a full Map interface. Note that these methods should use the same arguments and return types as their corresponding methods in the mutable Map
$Revision : 1.1 $