java.lang.Object
org.tquadrat.foundation.stream.Indexed<T>
Type Parameters:
T - The type of the indexed value.
All Implemented Interfaces:
Serializable, Map.Entry<Long,T>

@ClassVersion(sourceVersion="$Id: Indexed.java 1078 2023-10-19 14:39:47Z tquadrat $") @API(status=STABLE, since="0.0.7") public final class Indexed<T> extends Object implements Map.Entry<Long,T>, Serializable
A value combined with an index, indicating its position in an ordered sequence.
Author:
Dominic Fox
Modified by:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Indexed.java 1078 2023-10-19 14:39:47Z tquadrat $
Since:
0.0.7
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.stream.Indexed"

UML Diagram for "org.tquadrat.foundation.stream.Indexed"

UML Diagram for "org.tquadrat.foundation.stream.Indexed"
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final long
    The index.
    private T
    The value.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    Indexed(long index, T value)
    Creates a new Indexed instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    final long
    Returns the index.
    final Long
    final T
    The indexed value.
    final int
    static <T> Indexed<T>
    index(long index, T value)
    Factory method for instances of Indexed; it combines an index and a value into an indexed value.
    final T
    setValue(T value)

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • m_Index

      private final long m_Index
      The index.
    • m_Value

      private T m_Value
      The value.
  • Constructor Details

    • Indexed

      private Indexed(long index, T value)
      Creates a new Indexed instance.
      Parameters:
      index - The index.
      value - The value.
  • Method Details