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

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

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

public class IntParseHandler extends BasicParseHandler {
	
	public IntParseHandler(boolean allowsMultiple, boolean isCondition, boolean removeHtml) {
		super(allowsMultiple, isCondition, removeHtml);
	}

	public IntParseHandler(boolean allowsMultiple, boolean isCondition, boolean removeHtml, String patternMatch, String patternReplace) {
		super(allowsMultiple, isCondition, removeHtml, patternMatch, patternReplace);
	}

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

	@Override
	protected Integer convert(String value) {
		return Integer.valueOf(value);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy