- java.lang.Object
-
- swim.runtime.warp.ListLinkDelta
-
public abstract class ListLinkDelta extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ListLinkDeltaclear()static ListLinkDeltadrop(int lower)static ListLinkDeltamove(int fromIndex, int toIndex, Value key)static ListLinkDeltaremove(int index, Value key)static ListLinkDeltatake(int upper)abstract ValuetoValue()static ListLinkDeltaupdate(int index, Value key, Value value)
-
-
-
Method Detail
-
toValue
public abstract Value toValue()
-
update
public static ListLinkDelta update(int index, Value key, Value value)
-
remove
public static ListLinkDelta remove(int index, Value key)
-
move
public static ListLinkDelta move(int fromIndex, int toIndex, Value key)
-
drop
public static ListLinkDelta drop(int lower)
-
take
public static ListLinkDelta take(int upper)
-
clear
public static ListLinkDelta clear()
-
-