Class IfEmpty

  • All Implemented Interfaces:
    If<Object,​Object>

    public class IfEmpty
    extends ValueIf<Object>

    Simple If condition that returns true if the value is null or empty. The value can be one of:

    • java.lang.String
    • java.util.Collection
    • java.util.Map
    • java array of any kind
    Author:
    Jeff Schnitzer
    • Constructor Detail

      • IfEmpty

        public IfEmpty()
    • Method Detail

      • matchesValue

        public boolean matchesValue​(Object value)
        Description copied from interface: If
        Test a simple property value.
        Parameters:
        value - is the actual value of a particular field
        Returns:
        true if the value matches the condition defined by an instance of this interface.