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

org.unlaxer.jaddress.normalizer.NormalizeResult Maven / Gradle / Ivy

The newest version!
package org.unlaxer.jaddress.normalizer;

import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;

public class NormalizeResult {
	public List numberdList = new ArrayList<>();
	StringBuilder sb = new StringBuilder();
	public String normalized;
	public String source;
	
	@Override
	public String toString() {
		return "NormalizeResult [numberdList=" + numberdList.stream()
				.map(Numberd::toString)
				.collect(Collectors.joining(",")) + ", sb=" + sb.toString() + ", normalized=" + normalized + "]";
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy