Mercurial > hg > monetdb-java
comparison src/main/java/org/monetdb/mcl/net/Parameter.java @ 867:5a59910e8f87
Resolve some javadoc errors and warnings
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 01 Feb 2024 18:55:11 +0100 (15 months ago) |
parents | b80758ef25db |
children | a227deba0e26 |
comparison
equal
deleted
inserted
replaced
866:6d229896c785 | 867:5a59910e8f87 |
---|---|
138 /** | 138 /** |
139 * Return a default value for the given setting, as an Object of the appropriate type. | 139 * Return a default value for the given setting, as an Object of the appropriate type. |
140 * Note that the value returned for TIMEZONE may change if the system time zone | 140 * Note that the value returned for TIMEZONE may change if the system time zone |
141 * is changed or if Daylight Saving Time starts or ends. | 141 * is changed or if Daylight Saving Time starts or ends. |
142 * | 142 * |
143 * @return | 143 * @return default value for the given setting, as an Object of the appropriate type |
144 */ | 144 */ |
145 public Object getDefault() { | 145 public Object getDefault() { |
146 switch (this) { | 146 switch (this) { |
147 case TIMEZONE: | 147 case TIMEZONE: |
148 Calendar cal = Calendar.getInstance(); | 148 Calendar cal = Calendar.getInstance(); |