Uses of Class
org.openstreetmap.josm.data.validation.routines.EmailValidator
-
Packages that use EmailValidator Package Description org.openstreetmap.josm.data.validation.routines This package contains independent validation routines adapted from Apache Commons Validator 1.5.0. -
-
Uses of EmailValidator in org.openstreetmap.josm.data.validation.routines
Fields in org.openstreetmap.josm.data.validation.routines declared as EmailValidator Modifier and Type Field Description private static EmailValidator
EmailValidator. EMAIL_VALIDATOR
Singleton instance of this class, which doesn't consider local addresses as valid.private static EmailValidator
EmailValidator. EMAIL_VALIDATOR_WITH_LOCAL
Singleton instance of this class, which does consider local addresses valid.private static EmailValidator
EmailValidator. EMAIL_VALIDATOR_WITH_TLD
Singleton instance of this class, which doesn't consider local addresses as valid.Methods in org.openstreetmap.josm.data.validation.routines that return EmailValidator Modifier and Type Method Description static EmailValidator
EmailValidator. getInstance()
Returns the Singleton instance of this validator.static EmailValidator
EmailValidator. getInstance(boolean allowLocal)
Returns the Singleton instance of this validator, with local validation as required.static EmailValidator
EmailValidator. getInstance(boolean allowLocal, boolean allowTld)
Returns the Singleton instance of this validator, with local validation as required.
-