Packages

case object Insertion extends OrderBy with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Insertion
  2. Serializable
  3. Product
  4. Equals
  5. OrderBy
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def productElementName(n: Int): String

    The name of the nth element of this product, 0-based.

    The name of the nth element of this product, 0-based. In the default implementation, an empty string.

    n

    the index of the element name to return

    returns

    the name of the specified element

    Definition Classes
    Product
    Exceptions thrown

    IndexOutOfBoundsException if the n is out of range(n < 0 || n >= productArity).

  2. def productElementNames: scala.Iterator[String]

    An iterator over the names of all the elements of this product.

    An iterator over the names of all the elements of this product.

    Definition Classes
    Product