Packages

c

scala.collection.mutable

DefaultEntry

final class DefaultEntry[A, B] extends HashEntry[A, DefaultEntry[A, B]] with Serializable

Class used internally for default map model.

Source
DefaultEntry.scala
Since

2.3

Linear Supertypes
Serializable, java.io.Serializable, HashEntry[A, DefaultEntry[A, B]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultEntry
  2. Serializable
  3. Serializable
  4. HashEntry
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DefaultEntry(key: A, value: B)

Value Members

  1. def chainString: String
  2. val key: A
    Definition Classes
    DefaultEntryHashEntry
  3. val next: DefaultEntry[A, B]
    Definition Classes
    HashEntry
  4. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    DefaultEntry → AnyRef → Any
  5. var value: B