Package org.apache.webdav.lib.search.SearchRequest

Examples of org.apache.webdav.lib.search.SearchRequest.Variable


            synchronized(dateFormat) {
                return dateFormat.format((Date)value);
            }
        }
        if (value instanceof Variable) {
            Variable var = (Variable)value;
            Object val = this.variables.get(var.getName());
            if (val == null) val = var.getDefaultValue();
            if (val == null) {
                throw new SearchException("Unset variable: " + var.getName());
            }
            return valueToString(val);
        }
        // otherwise
        return value.toString();
View Full Code Here

TOP

Related Classes of org.apache.webdav.lib.search.SearchRequest.Variable

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.