Returns the end time of the graph. If #setEndTime was never called before, this method will automatically execute #setEndTime setEndTime(System.currentTimeMillis() / 1000) to set the end time. @return A strictly positive integer.
()
| 98 | * @return A strictly positive integer. |
| 99 | */ |
| 100 | @Override |
| 101 | public long getEndTime() { |
| 102 | return rawQuery != null ? rawQuery.getEndTime() : rollupQuery.getEndTime(); |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Sets the end time of the graph. Converts the timestamp to milliseconds if necessary. |
nothing calls this directly
no test coverage detected