Example usage for org.apache.commons.lang3.text.translate AggregateTranslator translate

List of usage examples for org.apache.commons.lang3.text.translate AggregateTranslator translate

Introduction

In this page you can find the example usage for org.apache.commons.lang3.text.translate AggregateTranslator translate.

Prototype

public final String translate(final CharSequence input) 

Source Link

Document

Helper for non-Writer usage.

Usage

From source file:org.miradi.utils.XmlUtilities2.java

public static String getWithUnescapedNumericEntities(String value) {
    AggregateTranslator translator = new AggregateTranslator(new NumericEntityUnescaper());

    return translator.translate(value);
}