org.beanfuse.model.predicates.EmptyKeyPredicate.java Source code

Java tutorial

Introduction

Here is the source code for org.beanfuse.model.predicates.EmptyKeyPredicate.java

Source

/*
 *
 * Copyright c 2005-2009.
 * 
 * Licensed under GNU  LESSER General Public License, Version 3.  
 * http://www.gnu.org/licenses
 * 
 */
/********************************************************************************
 * @author chaostone
 * 
 * MODIFICATION DESCRIPTION
 * 
 * Name                 Date                Description 
 * ============         ============        ============
 * chaostone             2006-5-27            Created
 *  
 ********************************************************************************/
package org.beanfuse.model.predicates;

import org.apache.commons.collections.Predicate;
import org.apache.commons.lang.StringUtils;

public class EmptyKeyPredicate implements Predicate {

    public boolean evaluate(final Object value) {
        boolean success = false;
        if (null != value) {
            if (value instanceof String) {
                success = StringUtils.isEmpty((String) value);
            } else if (value instanceof Number) {
                success = (0 == ((Number) value).intValue());
            } else {
                throw new RuntimeException("unsupported key type");
            }
        }
        return success;
    }

}