Klasse IndexedPackage<C>

java.lang.Object
ch.nolix.core.net.messaging.IndexedPackage<C>
Typparameter:
C - is the type of the content of a IndexedPackage.

public class IndexedPackage<C> extends Object
A IndexedPackage bundles an index and a content.
Version:
2016-06-01
Autor:
Silvan Wyss
  • Konstruktordetails

    • IndexedPackage

      protected IndexedPackage(int index, C content)
      Creates a new IndexedPackage with the given index and content.
      Parameter:
      index -
      content -
      Löst aus:
      ArgumentIsNullException - if the given content is null.
  • Methodendetails

    • withIndexAndContent

      public static <C2> IndexedPackage<C2> withIndexAndContent(int index, C2 content)
      Typparameter:
      C2 - is the type of the given content.
      Parameter:
      index -
      content -
      Gibt zurück:
      a new IndexedPackage with the given index and content.
      Löst aus:
      ArgumentIsNullException - if the given content is null.
    • getStoredContent

      public final C getStoredContent()
      Gibt zurück:
      the content of the current IndexedPackage.
    • getIndex

      public final int getIndex()
      Gibt zurück:
      the index of the current IndexedPackage.
    • hasIndex

      public final boolean hasIndex(int index)
      Parameter:
      index -
      Gibt zurück:
      true if the current IndexedPackage has the given index.