Class PropertyUtils


  • public final class PropertyUtils
    extends Object
    Holder of generic property related methods
    • Method Detail

      • isFalse

        public static boolean isFalse​(Map<String,​Object> props,
                                      String key)
        It might seem odd to return 'true' if a property == FALSE, but it is required sometimes.
        Parameters:
        props -
        key -
        Returns:
        false if value is either the String "false" or Boolean.FALSE. Otherwise returns true.
      • isTrue

        public static boolean isTrue​(Object property)
        Returns true if a value is either the String "true" (regardless of case) or Boolean.TRUE.
        Parameters:
        property -
        Returns:
        true if value is either the String "true" or Boolean.TRUE. Otherwise returns false.
      • isFalse

        public static boolean isFalse​(Object property)
        It might seem odd to return 'true' if a property == FALSE, but it is required sometimes. Returns false if a value is either the String "false" (regardless of case) or Boolean.FALSE.
        Parameters:
        property -
        Returns:
        false if value is either the String "false" or Boolean.FALSE. Otherwise returns true.