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

org.apache.commons.text.StringSubstitutor Maven / Gradle / Ivy

Go to download

Find Security Bugs stub dependencies use for the samples. This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

The newest version!
package org.apache.commons.text;

import java.util.Map;

/**
 * Changes might needs synchronisation with org.apache.commons.lang3.text.StringSubstitutor
 */
public class StringSubstitutor {

    public StringSubstitutor() {

    }

    public  StringSubstitutor(final Map valueMap) {

    }

    public  StringSubstitutor(Map valueMap, String prefix, String suffix) {

    }

    public  StringSubstitutor(final Map valueMap, final String prefix, final String suffix,
                                 final char escape) {
    }


    public  StringSubstitutor(final Map valueMap, final String prefix, final String suffix,
                                 final char escape, final String valueDelimiter) {

    }


    public static  String replace(final Object source, final Map valueMap) {
return null;
    }


    public String replace(final char[] source) {
        return null;
    }
    public String replace(final CharSequence source) {
        return null;
    }
    public String replace(final Object source) {
        return null;
    }
    public String replace(final String source) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy