Package | Description |
---|---|
java.security | |
java.security.cert | |
java.sql | |
java.text | |
java.util |
Modifier and Type | Method and Description |
---|---|
abstract Date |
KeyStoreSpi.engineGetCreationDate(String alias) |
Date |
KeyStore.getCreationDate(String alias) |
Modifier and Type | Method and Description |
---|---|
Date |
X509CertSelector.getCertificateValid()
Returns the date at which certificates must be valid, or
null
if this criterion was not set. |
Date |
PKIXParameters.getDate()
Returns the date for which the certificate path should be
validated, or null if the current time should be used.
|
Date |
X509CRLSelector.getDateAndTime()
Returns the date when this CRL must be valid; that is, the date
must be after the thisUpdate date, but before the nextUpdate date.
|
abstract Date |
X509CRL.getNextUpdate() |
abstract Date |
X509Certificate.getNotAfter() |
abstract Date |
X509Certificate.getNotBefore() |
Date |
X509CertSelector.getPrivateKeyValid()
This method, and its related X.509 certificate extension — the
private key usage period — is not supported under the Internet
PKI for X.509 certificates (PKIX), described in RFC 3280.
|
abstract Date |
X509CRLEntry.getRevocationDate() |
abstract Date |
X509CRL.getThisUpdate() |
Modifier and Type | Method and Description |
---|---|
abstract void |
X509Certificate.checkValidity(Date date) |
void |
X509CertSelector.setCertificateValid(Date certValid)
Sets the date at which certificates must be valid.
|
void |
PKIXParameters.setDate(Date date)
Sets the date for which the certificate path should be validated,
or null if the current time should be used.
|
void |
X509CRLSelector.setDateAndTime(Date date)
Sets the date at which this CRL must be valid.
|
void |
X509CertSelector.setPrivateKeyValid(Date UNUSED)
This method, and its related X.509 certificate extension — the
private key usage period — is not supported under the Internet
PKI for X.509 certificates (PKIX), described in RFC 3280.
|
Modifier and Type | Class and Description |
---|---|
class |
Date |
class |
Time |
class |
Timestamp |
Modifier and Type | Method and Description |
---|---|
Date |
SimpleDateFormat.get2DigitYearStart() |
Date |
DateFormat.parse(String string)
Parses a date from the specified string using the rules of this date
format.
|
abstract Date |
DateFormat.parse(String date,
ParsePosition pp)
Parses a date from the specified string starting at the index specified
by
position . |
Date |
SimpleDateFormat.parse(String str,
ParsePosition pos) |
Modifier and Type | Method and Description |
---|---|
String |
DateFormat.format(Date date)
Formats the specified date using the rules of this date format.
|
abstract StringBuffer |
DateFormat.format(Date date,
StringBuffer buffer,
FieldPosition field)
Formats the specified date as a string using the pattern of this date
format and appends the string to the specified string buffer.
|
StringBuffer |
SimpleDateFormat.format(Date date,
StringBuffer dest,
FieldPosition pos) |
void |
SimpleDateFormat.set2DigitYearStart(Date date) |
Modifier and Type | Method and Description |
---|---|
Date |
GregorianCalendar.getGregorianChange()
Answers the gregorian change date of this calendar.
|
Date |
Calendar.getTime()
Gets the time of this Calendar as a Date object.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Date.after(Date date)
Returns if this
Date is after the specified Date. |
boolean |
Date.before(Date date)
Returns if this
Date is before the specified Date. |
int |
Date.compareTo(Date date)
Compare the receiver to the specified
Date to determine the relative
ordering. |
boolean |
SimpleTimeZone.inDaylightTime(Date date) |
abstract boolean |
TimeZone.inDaylightTime(Date date) |
void |
Timer.schedule(TimerTask task,
Date date) |
void |
Timer.schedule(TimerTask task,
Date date,
long period) |
void |
Timer.scheduleAtFixedRate(TimerTask task,
Date date,
long period) |
void |
GregorianCalendar.setGregorianChange(Date date)
Sets the gregorian change date of this calendar.
|
void |
Calendar.setTime(Date date)
Sets the time of this Calendar.
|