Klasse FrameList<T>

Alle implementierten Schnittstellen:
Serializable, Cloneable, Iterable<T>, Collection<T>, Deque<T>, List<T>, Queue<T>, SequencedCollection<T>

public class FrameList<T> extends LinkedList<T>
This is a custom LinkedList it contains the method to Replace objects in the list / This Plugin was Created by FrameDev / Package : de.framedev.javautils / ClassName CustomString / Date: 17.06.21 / Project: JavaUtils / Copyrighted by FrameDev
Siehe auch:
  • Konstruktordetails

    • FrameList

      public FrameList()
  • Methodendetails

    • replace

      public void replace(T oldData, T newData)
      Replace Data in the List
      Parameter:
      oldData - the OldData for Replace
      newData - the new Data to Replace with the oldData
    • replace

      public void replace(int index, T newData)
      Replace Data in the List
      Parameter:
      index - the Index in the List for Replace Data
      newData - the new Data to Replace with the oldData