object ValueMapping
Companion object for ValueMapping that provides implicit implementations for scala.collection.GenMap and java.util.Map.
- Source
- ValueMapping.scala
- Alphabetic
- By Inheritance
- ValueMapping
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
implicit
def
convertEqualityToGenMapValueMapping[K, V, MAP[k, v] <: GenMap[k, v]](equality: Equality[V]): ValueMapping[MAP[K, V]]
Implicit conversion that converts an
Equalityof typeVintoValueMappingof typeMAP[K, V], whereMAPis a subtype ofscala.collection.GenMap.Implicit conversion that converts an
Equalityof typeVintoValueMappingof typeMAP[K, V], whereMAPis a subtype ofscala.collection.GenMap. This is required to support the explicitEqualitysyntax, for example:(Map(1 -> "one") should contain value "ONE") (after being lowerCased)
(after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoValueMapping[Map[Int, String]].- K
the type of the key in the
scala.collection.GenMap- V
the type of the value in the
scala.collection.GenMap- MAP
any subtype of
scala.collection.GenMap- equality
Equalityof typeV- returns
ValueMappingof typeMAP[K, V]
-
implicit
def
convertEqualityToJavaMapValueMapping[K, V, JMAP[k, v] <: Map[k, v]](equality: Equality[V]): ValueMapping[JMAP[K, V]]
Implicit conversion that converts an
Equalityof typeVintoValueMappingof typeJMAP[K, V], whereJMAPis a subtype ofjava.util.Map.Implicit conversion that converts an
Equalityof typeVintoValueMappingof typeJMAP[K, V], whereJMAPis a subtype ofjava.util.Map. This is required to support the explicitEqualitysyntax, for example:val javaMap = new java.util.HashMap[Int, String]() javaMap.put(1, "one") (javaMap should contain value "ONE") (after being lowerCased)
(after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoValueMapping[java.util.HashMap[Int, String]].- K
the type of the key in the
java.util.Map- V
the type of the value in the
java.util.Map- JMAP
any subtype of
java.util.Map- equality
Equalityof typeV- returns
ValueMappingof typeJMAP[K, V]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
implicit
def
valueMappingNatureOfGenMap[K, V, MAP[k, v] <: GenMap[k, v]](implicit equality: Equality[V]): ValueMapping[MAP[K, V]]
Enable
ValueMappingimplementation forscala.collection.GenMap.Enable
ValueMappingimplementation forscala.collection.GenMap.- K
the type of the key in the
scala.collection.GenMap- V
the type of the value in the
scala.collection.GenMap- MAP
any subtype of
scala.collection.GenMap- equality
Equalitytype class that is used to check equality of value in thescala.collection.GenMap- returns
ValueMapping[MAP[K, V]]that supportsscala.collection.GenMapincontain valuesyntax
-
implicit
def
valueMappingNatureOfJavaMap[K, V, JMAP[k, v] <: Map[k, v]](implicit equality: Equality[V]): ValueMapping[JMAP[K, V]]
Enable
ValueMappingimplementation forjava.util.Map.Enable
ValueMappingimplementation forjava.util.Map.- K
the type of the key in the
java.util.Map- V
the type of the value in the
java.util.Map- JMAP
any subtype of
java.util.Map- equality
Equalitytype class that is used to check equality of value in thejava.util.Map- returns
ValueMapping[JMAP[K, V]]that supportsjava.util.Mapincontainvaluesyntax
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )