Class BooleanPropertyValidator

  • All Implemented Interfaces:
    PropertyValidator

    public class BooleanPropertyValidator
    extends java.lang.Object
    implements PropertyValidator
    Validator for a property that represents a boolean.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean validate​(java.lang.String name, java.lang.Object value)
      Method to validate the property, allowing only Boolean or String(with boolean values).
      static boolean validateValueIsBoolean​(java.lang.Object value)
      Convenience method that checks that the passed value is usable as a boolean.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BooleanPropertyValidator

        public BooleanPropertyValidator()
    • Method Detail

      • validate

        public boolean validate​(java.lang.String name,
                                java.lang.Object value)
        Method to validate the property, allowing only Boolean or String(with boolean values).
        Specified by:
        validate in interface PropertyValidator
        Parameters:
        name - Name of property
        value - Value of property
        Returns:
        Whether it is valid
      • validateValueIsBoolean

        public static boolean validateValueIsBoolean​(java.lang.Object value)
        Convenience method that checks that the passed value is usable as a boolean.
        Parameters:
        value - The value
        Returns:
        Whether it is boolean