Example usage for org.apache.commons.lang Entities XML

List of usage examples for org.apache.commons.lang Entities XML

Introduction

In this page you can find the example usage for org.apache.commons.lang Entities XML.

Prototype

Entities XML

To view the source code for org.apache.commons.lang Entities XML.

Click Source Link

Document

The set of entities supported by standard XML.

Usage

From source file:net.sourceforge.jcctray.utils.ObjectPersister.java

private static String escape(String str) {
    if (str == null) {
        return null;
    }
    return Entities.XML.escape(str);
}