Repository: commons-text Updated Branches: refs/heads/master da913a026 -> 746fefadb
Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/746fefad Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/746fefad Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/746fefad Branch: refs/heads/master Commit: 746fefadb5b6c7e118423674e90d5ee364154b08 Parents: da913a0 Author: Gary Gregory <ggreg...@rocketsoftware.com> Authored: Mon Oct 1 09:07:12 2018 -0600 Committer: Gary Gregory <ggreg...@rocketsoftware.com> Committed: Mon Oct 1 09:07:12 2018 -0600 ---------------------------------------------------------------------- .../commons/text/lookup/StringLookupFactory.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/746fefad/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java b/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java index dcf599d..4a91500 100644 --- a/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java +++ b/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java @@ -21,6 +21,22 @@ import java.util.Map; /** * Provides access to lookups defined in this package. + * <ul> + * <li>"sys" for the {@link SystemPropertyStringLookup}.</li> + * <li>"env" for the {@link EnvironmentVariableStringLookup}.</li> + * <li>"java" for the {@link JavaPlatformStringLookup}.</li> + * <li>"date" for the {@link DateStringLookup}.</li> + * <li>"localhost" for the {@link LocalHostStringLookup} since 1.3.</li> + * <li>"xml" for the {@link XmlStringLookup} since 1.5.</li> + * <li>"properties" for the {@link PropertiesStringLookup} since 1.5.</li> + * <li>"script" for the {@link ScriptStringLookup} since 1.5.</li> + * <li>"file" for the {@link FileStringLookup} since 1.5.</li> + * <li>"url" for the {@link UrlStringLookup} since 1.5.</li> + * <li>"base64" for the {@link Base64StringLookup} since 1.5.</li> + * <li>"urlEncode" for the {@link UrlEncoderStringLookup} since 1.5.</li> + * <li>"urlDecode" for the {@link UrlDecoderStringLookup} since 1.5.</li> + * <li>"const" for the {@link ConstantStringLookup} since 1.5.</li> + * </ul> * * @since 1.3 */