Interface Validator<T>

Type Parameters:
T - type of object

public interface Validator<T>
Validator to check an object.
Since:
1.0.2
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    isValid(T object)
    Validate an object.
  • Method Details

    • isValid

      boolean isValid(T object)
      Validate an object.
      Parameters:
      object - object to be validated
      Returns:
      true if the object is valid, false otherwise