Interface Validator<T>


  • public interface Validator<T>
    Interface to define a validator for a typed text field.
    • Method Detail

      • validate

        boolean validate​(T value)
        Method which when called should check if a value is valid.
        Parameters:
        value - The value to be checked.
        Returns:
        Whether the value is valid.