public final class UtcTimeSyntaxChecker extends SyntaxChecker
From RFC 4517 :
UTCTime = year month day hour minute [ second ] [ u-time-zone ]
u-time-zone = %x5A ; "Z" | u-differential
u-differential = ( MINUS | PLUS ) hour minute
year = 2(%x30-39) ; "00" to "99"
month = ( %x30 %x31-39 ) ; "01" (January) to "09"
| ( %x31 %x30-32 ) ; "10" to "12"
day = ( %x30 %x31-39 ) ; "01" to "09"
| ( %x31-32 %x30-39 ) ; "10" to "29"
| ( %x33 %x30-31 ) ; "30" to "31"
hour = ( %x30-31 %x30-39 )
| ( %x32 %x30-33 ) ; "00" to "23"
minute = %x30-35 %x30-39 ; "00" to "59"
second = ( %x30-35 %x30-39 ) ; "00" to "59"
g-time-zone = %x5A ; "Z"
| g-differential
g-differential = ( MINUS / PLUS ) hour [ minute ]
MINUS = %x2D ; minus sign ("-")
From RFC 4512 :
PLUS = %x2B ; plus sign ("+")
| Modifier and Type | Class and Description |
|---|---|
static class |
UtcTimeSyntaxChecker.Builder
A static Builder for this class
|
SyntaxChecker.SCBuilder<SC>| Modifier and Type | Field and Description |
|---|---|
private static Pattern |
DATE_PATTERN |
static UtcTimeSyntaxChecker |
INSTANCE
A static instance of UtcTimeSyntaxChecker
|
private static String |
UTC_TIME_PATTERN
The GeneralizedDate pattern matching
|
LOG, serialVersionUIDdescription, extensions, h, isEnabled, isObsolete, locked, names, objectType, oid, schemaName, specification| Modifier | Constructor and Description |
|---|---|
private |
UtcTimeSyntaxChecker(String oid)
Creates a new instance of UtcTimeSyntaxChecker.
|
| Modifier and Type | Method and Description |
|---|---|
static UtcTimeSyntaxChecker.Builder |
builder() |
boolean |
isValidSyntax(Object value)
Determines if the attribute's value conforms to the attribute syntax.
|
equals, setSchemaManager, toStringcopy, getBytecode, getFqcn, hashCode, isValid, setBytecode, setFqcnaddExtension, 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, unlockprivate static final String UTC_TIME_PATTERN
private static final Pattern DATE_PATTERN
public static final UtcTimeSyntaxChecker INSTANCE
private UtcTimeSyntaxChecker(String oid)
oid - The OID to use for this SyntaxCheckerpublic static UtcTimeSyntaxChecker.Builder builder()
public boolean isValidSyntax(Object value)
isValidSyntax in class SyntaxCheckervalue - the value of some attribute with the syntaxCopyright © 2003–2022 The Apache Software Foundation. All rights reserved.