Uses of Interface
de.xima.fc.common.geometry.ICardinalDirection2DMap
-
Packages that use ICardinalDirection2DMap Package Description de.xima.fc.common.geometry -
-
Uses of ICardinalDirection2DMap in de.xima.fc.common.geometry
Subinterfaces of ICardinalDirection2DMap in de.xima.fc.common.geometry Modifier and Type Interface Description interface
ICardinalDirection2DMapDouble
A map that associates double values with the four cardinal directions (north, east, south, west) in a 2D space.interface
ICardinalDirection2DMapInt
A map that associates int values with the four cardinal directions (north, east, south, west) in a 2D space.interface
ICardinalDirection2DMapLong
A map that associates long values with the four cardinal directions (north, east, south, west) in a 2D space.Methods in de.xima.fc.common.geometry that return ICardinalDirection2DMap Modifier and Type Method Description static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. cardinalDirection2DMap(Value value)
Creates a newICardinalDirection2DMap
with the specified value for each cardinal direction.static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. cardinalDirection2DMap(Value[] values)
Creates a newICardinalDirection2DMapDouble
with the specified values for each cardinal direction.static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. cardinalDirection2DMap(Value northSouth, Value eastWest)
Creates a newICardinalDirection2DMap
with the specified values for each cardinal direction.static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. cardinalDirection2DMap(Value north, Value east, Value south, Value west)
Creates a newICardinalDirection2DMap
with the specified values for each cardinal direction.static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. of(Value value)
Creates a newICardinalDirection2DMap
with the specified value for each cardinal direction.static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. of(Value[] values)
Creates a newICardinalDirection2DMap
with the specified values for each cardinal direction.static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. of(Value northSouth, Value eastWest)
Creates a newICardinalDirection2DMap
with the specified values for each cardinal direction.static <Value> ICardinalDirection2DMap<Value>
CardinalDirection2DMaps. of(Value north, Value east, Value south, Value west)
Creates a newICardinalDirection2DMap
with the specified values for each cardinal direction.
-