Class JavaLongSyntaxChecker

  • All Implemented Interfaces:
    Serializable, SchemaObject

    public final class JavaLongSyntaxChecker
    extends SyntaxChecker
    A SyntaxChecker which verifies that a value is a valid Java primitive long or the Long wrapper. Essentially this constrains the min and max values of the Integer.

    From RFC 4517 :

     Integer = ( HYPHEN LDIGIT *DIGIT ) | number
    
     From RFC 4512 :
     number  = DIGIT | ( LDIGIT 1*DIGIT )
     DIGIT   = %x30 | LDIGIT       ; "0"-"9"
     LDIGIT  = %x31-39             ; "1"-"9"
     HYPHEN  = %x2D                ; hyphen ("-")
     
    Author:
    Apache Directory Project
    See Also:
    Serialized Form
    • Field Detail

      • INSTANCE

        public static final JavaLongSyntaxChecker INSTANCE
        A static instance of JavaLongSyntaxChecker
    • 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