Class LLinkedListEntry<O>

java.lang.Object
de.linusdev.lutils.llist.LLinkedListEntry<O>

public class LLinkedListEntry<O> extends Object
  • Constructor Details

    • LLinkedListEntry

      public LLinkedListEntry(@Nullable O value)
  • Method Details

    • getNext

      @Nullable public @Nullable LLinkedListEntry<O> getNext()
    • setNext

      public void setNext(@Nullable @Nullable LLinkedListEntry<O> next)
    • getValue

      @Nullable public O getValue()
    • setValue

      public void setValue(@Nullable O value)