Uses of Class
ball.util.CoordinateMap
-
Packages that use CoordinateMap Package Description ball.util Seejava.util
. -
-
Uses of CoordinateMap in ball.util
Methods in ball.util that return CoordinateMap Modifier and Type Method Description CoordinateMap<V>
CoordinateMap. column(Number x)
Method to get theList
representing the specified column backed by theCoordinateMap
.CoordinateMap<V>
CoordinateMap. headMap(Coordinate key)
CoordinateMap<V>
CoordinateMap. resize(Number yN, Number xN)
Method to specify new limits for theCoordinateMap
with[y0, x0] = [0, 0]
.CoordinateMap<V>
CoordinateMap. resize(Number y0, Number x0, Number yN, Number xN)
Method to specify new limits for theCoordinateMap
.CoordinateMap<V>
CoordinateMap. row(Number y)
Method to get theList
representing the specified row backed by theCoordinateMap
.CoordinateMap<V>
CoordinateMap. subMap(Coordinate from, Coordinate to)
CoordinateMap<V>
CoordinateMap. subMap(Number y0, Number x0, Number yN, Number xN)
CoordinateMap<V>
CoordinateMap. tailMap(Coordinate key)
Methods in ball.util that return types with arguments of type CoordinateMap Modifier and Type Method Description List<CoordinateMap<V>>
CoordinateMap. columns()
Method to get aList
of columns (seecolumn(Number)
).List<CoordinateMap<V>>
CoordinateMap. rows()
Method to get aList
of rows (seerow(Number)
).
-