- java.lang.Object
-
- swim.system.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 ListLinkDelta
clear()
static ListLinkDelta
drop(int lower)
static ListLinkDelta
move(int fromIndex, int toIndex, Value key)
static ListLinkDelta
remove(int index, Value key)
static ListLinkDelta
take(int upper)
abstract Value
toValue()
static ListLinkDelta
update(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()
-
-