public final class QuantizedMeshTileID extends Object implements IEquatable<QuantizedMeshTileID>, ImmutableValueType
The X coordinate increases from west to east, and the Y coordinate increases from south to north. That is, the origin is in the south-west.
Constructor and Description |
---|
QuantizedMeshTileID(int level,
int x,
int y)
Initializes a new instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Indicates whether another object is exactly equal to this instance.
|
static boolean |
equals(QuantizedMeshTileID left,
QuantizedMeshTileID right)
Returns
true if the two instances are exactly equal. |
boolean |
equalsType(QuantizedMeshTileID other)
Indicates whether another instance of this type is exactly equal to this instance.
|
int |
getLevel()
Gets the zoom level.
|
int |
getX()
Gets the X tile coordinate.
|
int |
getY()
Gets the Y tile coordinate.
|
int |
hashCode()
Returns a hash code for this instance, which is suitable for use in hashing algorithms and data structures like a hash table.
|
static boolean |
notEquals(QuantizedMeshTileID left,
QuantizedMeshTileID right)
Returns
true if the two instances are not exactly equal. |
public QuantizedMeshTileID(int level, int x, int y)
level
- The zoom level.x
- The X tile coordinate.y
- The Y tile coordinate.public final int getLevel()
public final int getX()
public final int getY()
public boolean equals(Object obj)
equals
in class Object
obj
- The object to compare to this instance.true
if obj
is an instance of this type and represents the same value as this instance; otherwise false
.Object.hashCode()
,
HashMap
public final boolean equalsType(@Nonnull QuantizedMeshTileID other)
equalsType
in interface IEquatable<QuantizedMeshTileID>
other
- The instance to compare to this instance.true
if other
represents the same value as this instance; otherwise false
.public int hashCode()
hashCode
in class Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)
public static boolean equals(@Nonnull QuantizedMeshTileID left, @Nonnull QuantizedMeshTileID right)
true
if the two instances are exactly equal.left
- The instance to compare to right
.right
- The instance to compare to left
.true
if left
represents the same value as right
; otherwise false
.public static boolean notEquals(@Nonnull QuantizedMeshTileID left, @Nonnull QuantizedMeshTileID right)
true
if the two instances are not exactly equal.left
- The instance to compare to right
.right
- The instance to compare to left
.true
if left
does not represent the same value as right
; otherwise false
.