Package org.jitterbit.integration.client.entity.search

Examples of org.jitterbit.integration.client.entity.search.ReplaceableProperty


*/
abstract class Replacer<T> {

    @SuppressWarnings("unchecked")
    public static Replacer getReplacer(PropertySearchField searchField, SearchOptions options) {
        ReplaceableProperty property = (ReplaceableProperty) searchField.getProperty();
        Class type = property.getValueType();
        if (type.equals(String.class)) {
            String searchString = (String) Utils.getValue(searchField);
            return new StringReplacer(property, searchString, options);
        } else {
            return new DefaultReplacer(property);
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.entity.search.ReplaceableProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.