All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.regnosys.rosetta.translate.basic.TimeParseHandler Maven / Gradle / Ivy

There is a newer version: 11.25.1
Show newest version
package com.regnosys.rosetta.translate.basic;

import java.time.LocalTime;
import java.time.format.DateTimeFormatter;

public class TimeParseHandler extends BasicParseHandler {
	
	private DateTimeFormatter pattern;

	public TimeParseHandler(boolean allowsMultiple, boolean isCondition, boolean removeHtml) {
		super(allowsMultiple, isCondition, removeHtml);
		this.pattern = DateTimeFormatter.ISO_LOCAL_TIME;
	}
	
	public TimeParseHandler(boolean allowsMultiple, boolean isCondition, boolean removeHtml, String pattern) {
		super(allowsMultiple, isCondition, removeHtml);
		this.pattern = DateTimeFormatter.ofPattern(pattern);
	}

	@Override
	public String toString() {
		return "LocalTime";
	}

	@Override
	protected LocalTime convert(String value) {
		return LocalTime.parse(value, pattern);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy