Class NumericStringSyntaxChecker

  • All Implemented Interfaces:
    Serializable, SchemaObject

    public final class NumericStringSyntaxChecker
    extends SyntaxChecker
    A SyntaxChecker which verifies that a value is a Numeric String according to RFC 4517.

    From RFC 4517 :

     NumericString = 1*(DIGIT / SPACE)
     
     From RFC 4512 :
     DIGIT   = %x30 | LDIGIT       ; "0"-"9"
     LDIGIT  = %x31-39             ; "1"-"9"
     SPACE   = %x20                ; space (" ")
     
    Author:
    Apache Directory Project
    See Also:
    Serialized Form
    • Method Detail

      • isValidSyntax

        public boolean isValidSyntax​(Object value)
        Determines if the attribute's value conforms to the attribute syntax.
        Overrides:
        isValidSyntax in class SyntaxChecker
        Parameters:
        value - the value of some attribute with the syntax
        Returns:
        true if the value is in the valid syntax, false otherwise