HaxeAPI
  • Version development @ b6b8925
    • 3.4.7
    • 4.0.5
    • 4.1.3
    • 4.2.5
    • 4.3.6
    • Development
  • Download Haxe
  • Learn Haxe
    • Introduction
    • Manual
    • Code Cookbook
    • API Documentation
    • Videos
    • Try Haxe online
    • Haxelib
  • Connect
    • Github
    • Bug reports
    • Stack Overflow
    • Forums
    • Discord
    • Gitter
    • Blog
    • Facebook
    • #haxe
    • @haxelang
    • @haxe_org
    • Contact

class LinkedList<E>

package java.util

extends AbstractSequentialList › AbstractList › AbstractCollection

implements Serializable, Cloneable, Deque<E>, List<E>

@:native("java.util.LinkedList")@:libType

Available on jvm

Constructor

new()

new(param1:Collection<E>)

Variables

first:LinkedList_Node<E>

last:LinkedList_Node<E>

Methods

addFirst(param1:E):Void

addLast(param1:E):Void

clone():Dynamic

descendingIterator():Iterator<E>

element():E

getFirst():E

getLast():E

linkBefore(param1:E, param2:LinkedList_Node<E>):Void

linkLast(param1:E):Void

node(param1:Int):LinkedList_Node<E>

offer(param1:E):Bool

offerFirst(param1:E):Bool

offerLast(param1:E):Bool

peek():E

peekFirst():E

peekLast():E

poll():E

pollFirst():E

pollLast():E

pop():E

push(param1:E):Void

removeFirst():E

removeFirstOccurrence(param1:Dynamic):Bool

removeLast():E

removeLastOccurrence(param1:Dynamic):Bool

spliterator():Spliterator<E>

unlink(param1:LinkedList_Node<E>):E

Inherited Variables

Defined by AbstractList

modCount:Int

Inherited Methods

Defined by AbstractSequentialList

Defined by AbstractList

equals(param1:Dynamic):Bool

hashCode():Int

listIterator():ListIterator<E>

listIterator(param1:Int):ListIterator<E>

removeRange(param1:Int, param2:Int):Void

subList(param1:Int, param2:Int):List<E>

Defined by AbstractCollection

containsAll(param1:Collection<Dynamic>):Bool

isEmpty():Bool

removeAll(param1:Collection<Dynamic>):Bool

retainAll(param1:Collection<Dynamic>):Bool

toArray():NativeArray<Dynamic>

toArray<T>(param1:NativeArray<T>):NativeArray<T>

toString():String

This documentation is generated for version development @ b6b8925

© 2024  Haxe Foundation | Contribute to Haxe