Package dev.morphia.query.validation
Class LongTypeValidator
- java.lang.Object
-
- dev.morphia.query.validation.TypeValidator
-
- dev.morphia.query.validation.LongTypeValidator
-
- All Implemented Interfaces:
Validator
public class LongTypeValidator extends TypeValidator
Checks the type of the value if the type of the field is a Long or long.
-
-
Constructor Summary
Constructors Constructor Description LongTypeValidator()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
appliesTo(java.lang.Class<?> type)
Used by apply to figure out whether to apply the validation or simply return.static LongTypeValidator
getInstance()
Get the instance.protected void
validate(java.lang.Class<?> type, java.lang.Object value, java.util.List<ValidationFailure> validationFailures)
-
Methods inherited from class dev.morphia.query.validation.TypeValidator
apply
-
-
-
-
Method Detail
-
getInstance
public static LongTypeValidator getInstance()
Get the instance.- Returns:
- the Singleton instance of this validator
-
appliesTo
protected boolean appliesTo(java.lang.Class<?> type)
Description copied from class:TypeValidator
Used by apply to figure out whether to apply the validation or simply return.- Specified by:
appliesTo
in classTypeValidator
- Parameters:
type
- the type to be validated- Returns:
- true if this validator applies to this type, false otherwise
-
validate
protected void validate(java.lang.Class<?> type, java.lang.Object value, java.util.List<ValidationFailure> validationFailures)
- Specified by:
validate
in classTypeValidator
-
-