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

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

Introduction

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

Prototype

public AggregateTranslator(final CharSequenceTranslator... translators) 

Source Link

Document

Specify the translators to be used at creation time.

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);
}