|
@@ -269,19 +269,31 @@ public class RootObjectMapper extends ObjectMapper {
|
|
|
return copy;
|
|
|
}
|
|
|
|
|
|
- boolean dateDetection() {
|
|
|
+ /**
|
|
|
+ * Public API
|
|
|
+ */
|
|
|
+ public boolean dateDetection() {
|
|
|
return this.dateDetection.value();
|
|
|
}
|
|
|
|
|
|
- boolean numericDetection() {
|
|
|
+ /**
|
|
|
+ * Public API
|
|
|
+ */
|
|
|
+ public boolean numericDetection() {
|
|
|
return this.numericDetection.value();
|
|
|
}
|
|
|
|
|
|
- DateFormatter[] dynamicDateTimeFormatters() {
|
|
|
+ /**
|
|
|
+ * Public API
|
|
|
+ */
|
|
|
+ public DateFormatter[] dynamicDateTimeFormatters() {
|
|
|
return dynamicDateTimeFormatters.value();
|
|
|
}
|
|
|
|
|
|
- DynamicTemplate[] dynamicTemplates() {
|
|
|
+ /**
|
|
|
+ * Public API
|
|
|
+ */
|
|
|
+ public DynamicTemplate[] dynamicTemplates() {
|
|
|
return dynamicTemplates.value();
|
|
|
}
|
|
|
|