public final class GeneralizedTimeSyntaxChecker extends SyntaxChecker
From RFC 4517 :
GeneralizedTime = century year month day hour
[ minute [ second / leap-second ] ]
[ fraction ]
g-time-zone
century = 2(%x30-39) ; "00" to "99"
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"
leap-second = ( %x36 %x30 ) ; "60"
fraction = ( DOT / COMMA ) 1*(%x30-39)
g-time-zone = %x5A ; "Z"
| g-differential
g-differential = ( MINUS / PLUS ) hour [ minute ]
MINUS = %x2D ; minus sign ("-")
From RFC 4512 :
PLUS = %x2B ; plus sign ("+")
DOT = %x2E ; period (".")
COMMA = %x2C ; comma (",")
| Modifier and Type | Class and Description |
|---|---|
static class |
GeneralizedTimeSyntaxChecker.Builder
A static Builder for this class
|
SyntaxChecker.SCBuilder<SC>| Modifier and Type | Field and Description |
|---|---|
private static Pattern |
DATE_PATTERN
The date pattern.
|
private static String |
GENERALIZED_TIME_PATTERN
The GeneralizedDate pattern matching
|
static GeneralizedTimeSyntaxChecker |
INSTANCE
A static instance of GeneralizedTimeSyntaxChecker
|
LOG, serialVersionUIDdescription, extensions, h, isEnabled, isObsolete, locked, names, objectType, oid, schemaName, specification| Modifier | Constructor and Description |
|---|---|
private |
GeneralizedTimeSyntaxChecker(String oid)
Creates a new instance of GeneralizedTimeSyntaxChecker.
|
| Modifier and Type | Method and Description |
|---|---|
static GeneralizedTimeSyntaxChecker.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 GENERALIZED_TIME_PATTERN
private static final Pattern DATE_PATTERN
public static final GeneralizedTimeSyntaxChecker INSTANCE
private GeneralizedTimeSyntaxChecker(String oid)
oid - The OID to use for this SyntaxCheckerpublic static GeneralizedTimeSyntaxChecker.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.