Class TelephoneNumberSyntaxChecker
- java.lang.Object
-
- org.apache.directory.api.ldap.model.schema.AbstractSchemaObject
-
- org.apache.directory.api.ldap.model.schema.LoadableSchemaObject
-
- org.apache.directory.api.ldap.model.schema.SyntaxChecker
-
- org.apache.directory.api.ldap.model.schema.syntaxCheckers.TelephoneNumberSyntaxChecker
-
- All Implemented Interfaces:
Serializable,SchemaObject
public final class TelephoneNumberSyntaxChecker extends SyntaxChecker
A SyntaxChecker which verifies that a value is a TelephoneNumber according to ITU recommendation E.123 (which is quite vague ...).A valid Telephone number respects more or less this syntax :
" *[+]? *((\([0-9- ,;/#*]+\))|[0-9- ,;/#*]+)+"
If needed, and to allow more syntaxes, a list of regexps has been added which can be initialized to other values- Author:
- Apache Directory Project
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTelephoneNumberSyntaxChecker.BuilderA static Builder for this class-
Nested classes/interfaces inherited from class org.apache.directory.api.ldap.model.schema.SyntaxChecker
SyntaxChecker.SCBuilder<SC>
-
-
Field Summary
Fields Modifier and Type Field Description static TelephoneNumberSyntaxCheckerINSTANCEA static instance of TelephoneNumberSyntaxChecker-
Fields inherited from class org.apache.directory.api.ldap.model.schema.SyntaxChecker
LOG, serialVersionUID
-
Fields inherited from class org.apache.directory.api.ldap.model.schema.AbstractSchemaObject
description, extensions, h, isEnabled, isObsolete, locked, names, objectType, oid, schemaName, specification
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TelephoneNumberSyntaxChecker.Builderbuilder()StringgetRegexp()Get the default regexp (either the original one, or the one that has been set)booleanisValidSyntax(Object value)Determines if the attribute's value conforms to the attribute syntax.-
Methods inherited from class org.apache.directory.api.ldap.model.schema.SyntaxChecker
equals, setSchemaManager, toString
-
Methods inherited from class org.apache.directory.api.ldap.model.schema.LoadableSchemaObject
copy, getBytecode, getFqcn, hashCode, isValid, setBytecode, setFqcn
-
Methods inherited from class org.apache.directory.api.ldap.model.schema.AbstractSchemaObject
addExtension, addExtension, addName, clear, compareOid, computeHashCode, copy, getDescription, getExtension, getExtensions, getName, getNames, getObjectType, getOid, getSchemaName, getSpecification, hasExtension, isDisabled, isEnabled, isObsolete, lock, setDescription, setEnabled, setExtensions, setNames, setNames, setObsolete, setOid, setSchemaName, setSpecification, unlock
-
-
-
-
Field Detail
-
INSTANCE
public static final TelephoneNumberSyntaxChecker INSTANCE
A static instance of TelephoneNumberSyntaxChecker
-
-
Method Detail
-
builder
public static TelephoneNumberSyntaxChecker.Builder builder()
- Returns:
- An instance of the Builder for this class
-
getRegexp
public String getRegexp()
Get the default regexp (either the original one, or the one that has been set)- Returns:
- The default regexp
-
isValidSyntax
public boolean isValidSyntax(Object value)
Determines if the attribute's value conforms to the attribute syntax.- Overrides:
isValidSyntaxin classSyntaxChecker- Parameters:
value- the value of some attribute with the syntax- Returns:
- true if the value is in the valid syntax, false otherwise
-
-