Skip to content
Snippets Groups Projects

Fix large integer queries

Merged Daniel Hornung requested to merge f-fix-145-large-integer into dev
All threads resolved!
1 file
+ 29
29
Compare changes
  • Side-by-side
  • Inline
@@ -507,35 +507,35 @@ public class POV implements EntityFilterInterface {
return ret;
}
/** Return the value type as string, for debugging puposes. */
public String getValueType() {
if (this.vInt != null) { // vInt
System.out.println(this.vInt);
return "Integer";
}
if (this.vDouble != null) { // vInt
return "Double";
}
if (this.vDatetime != null) { // vInt
return "Datetime";
}
return "String";
}
/** Return the Int value, which may be null. */
public Integer getVInt() {
return this.vInt;
}
/** Return the Double value, which may be null. */
public Double getVDouble() {
return this.vDouble;
}
/** Return the Datetime value, which may be null. */
public DateTimeInterface getVDatetime() {
return this.vDatetime;
}
/** Return the value type as string, for debugging purposes. */
// public String getValueType() {
// if (this.vInt != null) { // vInt
// System.out.println(this.vInt);
// return "Integer";
// }
// if (this.vDouble != null) { // vInt
// return "Double";
// }
// if (this.vDatetime != null) { // vInt
// return "Datetime";
// }
// return "String";
// }
// /** Return the Int value, which may be null. */
// public Integer getVInt() {
// return this.vInt;
// }
// /** Return the Double value, which may be null. */
// public Double getVDouble() {
// return this.vDouble;
// }
// /** Return the Datetime value, which may be null. */
// public DateTimeInterface getVDatetime() {
// return this.vDatetime;
// }
public String getAggregate() {
return this.aggregate;
Loading