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

com.groupbyinc.common.jackson.jq.internal.functions.AtHtmlFunction Maven / Gradle / Ivy

There is a newer version: 198
Show newest version
package net.thisptr.jackson.jq.internal.functions;

import net.thisptr.jackson.jq.internal.BuiltinFunction;

@BuiltinFunction("@html/0")
public class AtHtmlFunction extends AbstractAtFormattingFunction {
	@Override
	public String convert(final String text) {
		final StringBuilder builder = new StringBuilder();
		for (final char ch : text.toCharArray()) {
			switch (ch) {
				case '<':
					builder.append("<");
					break;
				case '>':
					builder.append(">");
					break;
				case '\'':
					builder.append("'");
					break;
				case '"':
					builder.append(""");
					break;
				case '&':
					builder.append("&");
					break;
				default:
					builder.append(ch);
					break;
			}
		}
		return builder.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy