From 39db84a04c1668d8893c3002ee0596bf45f26bf9 Mon Sep 17 00:00:00 2001 From: Daniel Hornung <d.hornung@indiscale.com> Date: Tue, 21 Jun 2022 22:17:16 +0200 Subject: [PATCH] WIP: Find regression. --- .../java/org/caosdb/server/query/POV.java | 58 +++++++++---------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/main/java/org/caosdb/server/query/POV.java b/src/main/java/org/caosdb/server/query/POV.java index 8632070e..b030e0f4 100644 --- a/src/main/java/org/caosdb/server/query/POV.java +++ b/src/main/java/org/caosdb/server/query/POV.java @@ -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; -- GitLab