final case class TypedEntry[A](key: TypedKey[A], value: A) extends Product with Serializable

An entry that binds a typed key and a value. These entries can be placed into a TypedMap or any other type of object with typed values.

A

The type of the value.

key

The key for this entry.

value

The value for this entry.

Source
TypedEntry.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TypedEntry
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TypedEntry(key: TypedKey[A], value: A)

    key

    The key for this entry.

    value

    The value for this entry.

Value Members

  1. def asJava: libs.typedmap.TypedEntry[A]

    returns

    The Java version for this entry.

  2. val key: TypedKey[A]
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def toPair: (TypedKey[A], A)

    Convert the entry into a standard pair.

  5. val value: A