Class DatePropertyValidator<T extends DateProperty>
- java.lang.Object
-
- net.fortuna.ical4j.validate.property.DatePropertyValidator<T>
-
- All Implemented Interfaces:
Serializable
,Validator<T>
- Direct Known Subclasses:
UtcPropertyValidator
public class DatePropertyValidator<T extends DateProperty> extends Object implements Validator<T>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DatePropertyValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
validate(T target)
Validates the target content by applying validation rules.
-
-
-
Method Detail
-
validate
public void validate(T target) throws ValidationException
Description copied from interface:Validator
Validates the target content by applying validation rules. When content fails validation the validator may throw an exception depending on the implementation.- Specified by:
validate
in interfaceValidator<T extends DateProperty>
- Throws:
ValidationException
- indicates validation failure (implementation-specific)
-
-