9 changed files with 390 additions and 129 deletions
@ -0,0 +1,96 @@
@@ -0,0 +1,96 @@
|
||||
/* |
||||
* Copyright 2012-2020 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.web.format; |
||||
|
||||
import java.time.format.DateTimeFormatter; |
||||
import java.time.format.ResolverStyle; |
||||
|
||||
import org.springframework.util.StringUtils; |
||||
|
||||
/** |
||||
* {@link DateTimeFormatter Formatters} for dates, times, and date-times. |
||||
* |
||||
* @author Andy Wilkinson |
||||
* @since 2.3.0 |
||||
*/ |
||||
public class DateTimeFormatters { |
||||
|
||||
private DateTimeFormatter dateFormatter; |
||||
|
||||
private String datePattern; |
||||
|
||||
private DateTimeFormatter timeFormatter; |
||||
|
||||
private DateTimeFormatter dateTimeFormatter; |
||||
|
||||
/** |
||||
* Configures the date format using the given {@code pattern}. |
||||
* @param pattern the pattern for formatting dates |
||||
* @return {@code this} for chained method invocation |
||||
*/ |
||||
public DateTimeFormatters dateFormat(String pattern) { |
||||
this.dateFormatter = formatter(pattern); |
||||
this.datePattern = pattern; |
||||
return this; |
||||
} |
||||
|
||||
/** |
||||
* Configures the time format using the given {@code pattern}. |
||||
* @param pattern the pattern for formatting times |
||||
* @return {@code this} for chained method invocation |
||||
*/ |
||||
public DateTimeFormatters timeFormat(String pattern) { |
||||
this.timeFormatter = formatter(pattern); |
||||
return this; |
||||
} |
||||
|
||||
/** |
||||
* Configures the date-time format using the given {@code pattern}. |
||||
* @param pattern the pattern for formatting date-times |
||||
* @return {@code this} for chained method invocation |
||||
*/ |
||||
public DateTimeFormatters dateTimeFormat(String pattern) { |
||||
this.dateTimeFormatter = formatter(pattern); |
||||
return this; |
||||
} |
||||
|
||||
DateTimeFormatter getDateFormatter() { |
||||
return this.dateFormatter; |
||||
} |
||||
|
||||
String getDatePattern() { |
||||
return this.datePattern; |
||||
} |
||||
|
||||
DateTimeFormatter getTimeFormatter() { |
||||
return this.timeFormatter; |
||||
} |
||||
|
||||
DateTimeFormatter getDateTimeFormatter() { |
||||
return this.dateTimeFormatter; |
||||
} |
||||
|
||||
boolean isCustomized() { |
||||
return this.dateFormatter != null || this.timeFormatter != null || this.dateTimeFormatter != null; |
||||
} |
||||
|
||||
private static DateTimeFormatter formatter(String pattern) { |
||||
return StringUtils.hasText(pattern) |
||||
? DateTimeFormatter.ofPattern(pattern).withResolverStyle(ResolverStyle.SMART) : null; |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue