提交 07587319 authored 作者: Thomas Mueller's avatar Thomas Mueller

Reorder, formatting, javadocs

上级 060f91da
...@@ -1293,6 +1293,12 @@ public class Session extends SessionWithState { ...@@ -1293,6 +1293,12 @@ public class Session extends SessionWithState {
return queryTimeout; return queryTimeout;
} }
/**
* Set the table this session is waiting for, and the thread that is waiting.
*
* @param waitForLock the table
* @param waitForLockThread the current thread (the one that is waiting)
*/
public void setWaitForLock(Table waitForLock, Thread waitForLockThread) { public void setWaitForLock(Table waitForLock, Thread waitForLockThread) {
this.waitForLock = waitForLock; this.waitForLock = waitForLock;
this.waitForLockThread = waitForLockThread; this.waitForLockThread = waitForLockThread;
......
...@@ -194,8 +194,8 @@ public class ValueGeometry extends Value { ...@@ -194,8 +194,8 @@ public class ValueGeometry extends Value {
@Override @Override
public boolean equals(Object other) { public boolean equals(Object other) {
// The JTS library only does half-way support for 3D coords, so // The JTS library only does half-way support for 3D coordinates, so
// their equals method only checks the first two coords. // their equals method only checks the first two coordinates.
return other instanceof ValueGeometry && Arrays.equals(toWKB(), ((ValueGeometry) other).toWKB()); return other instanceof ValueGeometry && Arrays.equals(toWKB(), ((ValueGeometry) other).toWKB());
} }
...@@ -230,31 +230,6 @@ public class ValueGeometry extends Value { ...@@ -230,31 +230,6 @@ public class ValueGeometry extends Value {
return finder.isFoundZ() ? 3 : 2; return finder.isFoundZ() ? 3 : 2;
} }
private static class ZVisitor implements CoordinateSequenceFilter {
boolean foundZ = false;
public boolean isFoundZ() {
return foundZ;
}
@Override
public void filter(CoordinateSequence coordinateSequence, int i) {
if(!Double.isNaN(coordinateSequence.getOrdinate(i, 2))) {
foundZ = true;
}
}
@Override
public boolean isDone() {
return foundZ;
}
@Override
public boolean isGeometryChanged() {
return false;
}
}
/** /**
* Convert a Well-Known-Text to a Geometry object. * Convert a Well-Known-Text to a Geometry object.
* *
...@@ -283,11 +258,41 @@ public class ValueGeometry extends Value { ...@@ -283,11 +258,41 @@ public class ValueGeometry extends Value {
} }
} }
@Override
public Value convertTo(int targetType) { public Value convertTo(int targetType) {
if(targetType == Value.JAVA_OBJECT) { if (targetType == Value.JAVA_OBJECT) {
return this; return this;
} else {
return super.convertTo(targetType);
} }
return super.convertTo(targetType);
}
/**
* A visitor that checks if there is a Z coordinate.
*/
static class ZVisitor implements CoordinateSequenceFilter {
boolean foundZ;
public boolean isFoundZ() {
return foundZ;
}
@Override
public void filter(CoordinateSequence coordinateSequence, int i) {
if (!Double.isNaN(coordinateSequence.getOrdinate(i, 2))) {
foundZ = true;
}
}
@Override
public boolean isDone() {
return foundZ;
}
@Override
public boolean isGeometryChanged() {
return false;
}
} }
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论