Uses of Class
java.util.Date
| Package | Description |
|---|---|
| com.squareup.okhttp.internal.http | |
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| java.security.cert |
This package provides all the classes and all the interfaces needed to generate, administer and verify
X.509 certificates.
|
| java.sql | |
| java.text | |
| java.util | |
| java.util.concurrent.locks |
Interfaces and classes providing a framework for locking and waiting
for conditions that is distinct from built-in synchronization and
monitors.
|
| javax.security.cert |
This package is provided only for compatibility reasons.
|
| javax.xml.datatype | |
| libcore.net.http | |
| libcore.util | |
| org.apache.harmony.security.provider.cert | |
| org.apache.harmony.security.x509 | |
| org.apache.harmony.security.x509.tsp | |
| org.apache.http.client |
The API for client-side HTTP communication and
entry point to the HttpClient module.
|
| org.apache.http.cookie |
The API for client-side state management via cookies,
commonly referred to as HttpCookie.
|
| org.apache.http.impl.client | |
| org.apache.http.impl.conn.tsccm |
The implementation of a thread-safe client connection manager.
|
| org.apache.http.impl.cookie | |
| org.bouncycastle.asn1 | |
| org.bouncycastle.asn1.cms | |
| org.bouncycastle.asn1.x509 | |
| org.bouncycastle.cert | |
| org.bouncycastle.jcajce.provider.keystore.bc | |
| org.bouncycastle.jcajce.provider.keystore.pkcs12 | |
| org.bouncycastle.jce.provider | |
| org.bouncycastle.x509 | |
| org.conscrypt |
-
Uses of Date in com.squareup.okhttp.internal.http
Methods in com.squareup.okhttp.internal.http that return Date Modifier and Type Method Description DateResponseHeaders. getExpires()DateResponseHeaders. getLastModified()DateResponseHeaders. getServedDate()Methods in com.squareup.okhttp.internal.http with parameters of type Date Modifier and Type Method Description voidRequestHeaders. setIfModifiedSince(Date date) -
Uses of Date in java.security
Methods in java.security that return Date Modifier and Type Method Description abstract DateKeyStoreSpi. engineGetCreationDate(String alias)Returns the creation date of the entry with the given alias.DateKeyStore. getCreationDate(String alias)Returns the creation date of the entry with the given alias.DateTimestamp. getTimestamp()Returns the date and time of thisTimestamp.Constructors in java.security with parameters of type Date Constructor Description Timestamp(Date timestamp, CertPath signerCertPath)Constructs a new instance ofTimestampwith the specifiedtimestampand the given certificate path. -
Uses of Date in java.security.cert
Methods in java.security.cert that return Date Modifier and Type Method Description DateX509CertSelector. getCertificateValid()Returns the criterion for the validity date of the certificate.DatePKIXParameters. getDate()Returns the time for which the validation of the certification path should be evaluated.DateX509CRLSelector. getDateAndTime()Returns the criterion for the CRL update period.abstract DateX509CRL. getNextUpdate()Returns thenextUpdatevalue of this CRL.abstract DateX509Certificate. getNotAfter()Returns thenotAfterdate of the validity period of the certificate.abstract DateX509Certificate. getNotBefore()Returns thenotBeforedate from the validity period of the certificate.DateX509CertSelector. getPrivateKeyValid()Returns the criterion for the validity date of the private key.abstract DateX509CRLEntry. getRevocationDate()Returns the date when the certificate is revoked.abstract DateX509CRL. getThisUpdate()Returns thethisUpdatevalue of this CRL.Methods in java.security.cert with parameters of type Date Modifier and Type Method Description abstract voidX509Certificate. checkValidity(Date date)Checks whether the certificate is valid at the specified date.voidX509CertSelector. setCertificateValid(Date certificateValid)Sets the criterion for the validity date of the certificate.voidPKIXParameters. setDate(Date date)Sets the time for which the validation of the certification path should be evaluated.voidX509CRLSelector. setDateAndTime(Date dateAndTime)Sets the criterion for the CRL update period.voidX509CertSelector. setPrivateKeyValid(Date privateKeyValid)Sets the criterion for the validity date of the private key. -
Uses of Date in java.sql
-
Uses of Date in java.text
Methods in java.text that return Date Modifier and Type Method Description DateSimpleDateFormat. get2DigitYearStart()Returns the date which is the start of the one hundred year period for two-digit year values.DateDateFormat. parse(String string)Parses a date from the specified string using the rules of this date format.abstract DateDateFormat. parse(String string, ParsePosition position)Parses a date from the specified string starting at the index specified byposition.DateSimpleDateFormat. parse(String string, ParsePosition position)Parses a date from the specified string starting at the index specified byposition.Methods in java.text with parameters of type Date Modifier and Type Method Description StringDateFormat. format(Date date)Formats the specified date using the rules of this date format.abstract StringBufferDateFormat. 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.StringBufferSimpleDateFormat. format(Date date, StringBuffer buffer, FieldPosition fieldPos)Formats the specified date as a string using the pattern of this date format and appends the string to the specified string buffer.voidSimpleDateFormat. set2DigitYearStart(Date date)Sets the date which is the start of the one hundred year period for two-digit year values. -
Uses of Date in java.util
Methods in java.util that return Date Modifier and Type Method Description DateGregorianCalendar. getGregorianChange()Returns the gregorian change date of this calendar.DateCalendar. getTime()Returns the time of thisCalendaras aDateobject.Methods in java.util with parameters of type Date Modifier and Type Method Description booleanDate. after(Date date)Returns if thisDateis after the specified Date.booleanDate. before(Date date)Returns if thisDateis before the specified Date.intDate. compareTo(Date date)Compare the receiver to the specifiedDateto determine the relative ordering.booleanSimpleTimeZone. inDaylightTime(Date time)abstract booleanTimeZone. inDaylightTime(Date time)Returns true iftimeis in a daylight savings time period for this time zone.voidTimer. schedule(TimerTask task, Date when)Schedule a task for single execution.voidTimer. schedule(TimerTask task, Date when, long period)Schedule a task for repeated fixed-delay execution after a specific time has been reached.voidTimer. scheduleAtFixedRate(TimerTask task, Date when, long period)Schedule a task for repeated fixed-rate execution after a specific time has been reached.voidGregorianCalendar. setGregorianChange(Date date)Sets the gregorian change date of this calendar.voidCalendar. setTime(Date date)Sets the time of thisCalendar. -
Uses of Date in java.util.concurrent.locks
Methods in java.util.concurrent.locks with parameters of type Date Modifier and Type Method Description booleanAbstractQueuedLongSynchronizer.ConditionObject. awaitUntil(Date deadline)Implements absolute timed condition wait.booleanAbstractQueuedSynchronizer.ConditionObject. awaitUntil(Date deadline)Implements absolute timed condition wait.booleanCondition. awaitUntil(Date deadline)Causes the current thread to wait until it is signalled or interrupted, or the specified deadline elapses. -
Uses of Date in javax.security.cert
Methods in javax.security.cert that return Date Modifier and Type Method Description abstract DateX509Certificate. getNotAfter()Returns thenotAfterdate of the validity period of the certificate.abstract DateX509Certificate. getNotBefore()Returns thenotBeforedate from the validity period of the certificate.Methods in javax.security.cert with parameters of type Date Modifier and Type Method Description abstract voidX509Certificate. checkValidity(Date date)Checks whether the certificate is valid at the specified date. -
Uses of Date in javax.xml.datatype
Methods in javax.xml.datatype with parameters of type Date Modifier and Type Method Description voidDuration. addTo(Date date)Adds this duration to aDateobject.longDuration. getTimeInMillis(Date startInstant)Returns the length of the duration in milliseconds. -
Uses of Date in libcore.net.http
Methods in libcore.net.http that return Date Modifier and Type Method Description static DateHttpDate. parse(String value)Returns the date forvalue.Methods in libcore.net.http with parameters of type Date Modifier and Type Method Description static StringHttpDate. format(Date value)Returns the string forvalue. -
Uses of Date in libcore.util
Methods in libcore.util with parameters of type Date Modifier and Type Method Description booleanZoneInfo. inDaylightTime(Date time) -
Uses of Date in org.apache.harmony.security.provider.cert
Methods in org.apache.harmony.security.provider.cert that return Date Modifier and Type Method Description DateX509CRLImpl. getNextUpdate()DateX509CertImpl. getNotAfter()DateX509CertImpl. getNotBefore()DateX509CRLEntryImpl. getRevocationDate()DateX509CRLImpl. getThisUpdate()Methods in org.apache.harmony.security.provider.cert with parameters of type Date Modifier and Type Method Description voidX509CertImpl. checkValidity(Date date) -
Uses of Date in org.apache.harmony.security.x509
Methods in org.apache.harmony.security.x509 that return Date Modifier and Type Method Description DateInvalidityDate. getDate()Returns the invalidity date.DateTBSCertList. getNextUpdate()Returns the value of nextUpdate field of the structure.DatePrivateKeyUsagePeriod. getNotAfter()Returns the value of notAfter field of the structure.DateValidity. getNotAfter()Returns the value of notAfter field of the structure.DatePrivateKeyUsagePeriod. getNotBefore()Returns the value of notBefore field of the structure.DateValidity. getNotBefore()Returns the value of notBefore field of the structure.DateTBSCertList.RevokedCertificate. getRevocationDate()DateTBSCertList. getThisUpdate()Returns the value of thisUpdate field of the structure.Constructors in org.apache.harmony.security.x509 with parameters of type Date Constructor Description PrivateKeyUsagePeriod(Date notBeforeDate, Date notAfterDate)RevokedCertificate(BigInteger userCertificate, Date revocationDate, Extensions crlEntryExtensions)Validity(Date notBefore, Date notAfter) -
Uses of Date in org.apache.harmony.security.x509.tsp
Methods in org.apache.harmony.security.x509.tsp that return Date Modifier and Type Method Description DateTSTInfo. getGenTime()Constructors in org.apache.harmony.security.x509.tsp with parameters of type Date Constructor Description TSTInfo(int version, String policy, MessageImprint messageImprint, BigInteger serialNumber, Date genTime, int[] accuracy, Boolean ordering, BigInteger nonce, GeneralName tsa, Extensions extensions) -
Uses of Date in org.apache.http.client
Methods in org.apache.http.client with parameters of type Date Modifier and Type Method Description booleanCookieStore. clearExpired(Date date) -
Uses of Date in org.apache.http.cookie
Methods in org.apache.http.cookie that return Date Modifier and Type Method Description DateCookie. getExpiryDate()Returns the expirationDateof the cookie, or null if none exists.Methods in org.apache.http.cookie with parameters of type Date Modifier and Type Method Description booleanCookie. isExpired(Date date)Returns true if this cookie has expired.voidSetCookie. setExpiryDate(Date expiryDate)Sets expiration date. -
Uses of Date in org.apache.http.impl.client
Methods in org.apache.http.impl.client with parameters of type Date Modifier and Type Method Description booleanBasicCookieStore. clearExpired(Date date) -
Uses of Date in org.apache.http.impl.conn.tsccm
Methods in org.apache.http.impl.conn.tsccm with parameters of type Date Modifier and Type Method Description booleanWaitingThread. await(Date deadline)Blocks the calling thread. -
Uses of Date in org.apache.http.impl.cookie
Methods in org.apache.http.impl.cookie that return Date Modifier and Type Method Description DateBasicClientCookie. getExpiryDate()Returns the expirationDateof the cookie, or null if none exists.static DateDateUtils. parseDate(String dateValue)Parses a date value.static DateDateUtils. parseDate(String dateValue, String[] dateFormats)Parses the date value using the given date formats.static DateDateUtils. parseDate(String dateValue, String[] dateFormats, Date startDate)Parses the date value using the given date formats.Methods in org.apache.http.impl.cookie with parameters of type Date Modifier and Type Method Description static StringDateUtils. formatDate(Date date)Formats the given date according to the RFC 1123 pattern.static StringDateUtils. formatDate(Date date, String pattern)Formats the given date according to the specified pattern.booleanBasicClientCookie. isExpired(Date date)Returns true if this cookie has expired.booleanBasicClientCookie2. isExpired(Date date)static DateDateUtils. parseDate(String dateValue, String[] dateFormats, Date startDate)Parses the date value using the given date formats.voidBasicClientCookie. setExpiryDate(Date expiryDate)Sets expiration date. -
Uses of Date in org.bouncycastle.asn1
Methods in org.bouncycastle.asn1 that return Date Modifier and Type Method Description DateDERUTCTime. getAdjustedDate()return the time as an adjusted date in the range of 1950 - 2049.DateDERGeneralizedTime. getDate()DateDERUTCTime. getDate()return the time as a date based on whatever a 2 digit year will return.Constructors in org.bouncycastle.asn1 with parameters of type Date Constructor Description ASN1GeneralizedTime(Date time)ASN1UTCTime(Date time)DERGeneralizedTime(Date time)base constructor from a java.util.date objectDERUTCTime(Date time)base constructer from a java.util.date object -
Uses of Date in org.bouncycastle.asn1.cms
Methods in org.bouncycastle.asn1.cms that return Date Modifier and Type Method Description DateTime. getDate()Constructors in org.bouncycastle.asn1.cms with parameters of type Date Constructor Description Time(Date date)creates a time object from a given date - if the date is between 1950 and 2049 a UTCTime object is generated, otherwise a GeneralizedTime is used. -
Uses of Date in org.bouncycastle.asn1.x509
Methods in org.bouncycastle.asn1.x509 that return Date Modifier and Type Method Description DateTime. getDate()Constructors in org.bouncycastle.asn1.x509 with parameters of type Date Constructor Description Time(Date date)creates a time object from a given date - if the date is between 1950 and 2049 a UTCTime object is generated, otherwise a GeneralizedTime is used. -
Uses of Date in org.bouncycastle.cert
Methods in org.bouncycastle.cert that return Date Modifier and Type Method Description DateX509AttributeCertificateHolder. getNotAfter()Return the date after which this attribute certificate is not valid.DateX509CertificateHolder. getNotAfter()Return the date after which this certificate is not valid.DateX509AttributeCertificateHolder. getNotBefore()Return the date before which this attribute certificate is not valid.DateX509CertificateHolder. getNotBefore()Return the date before which this certificate is not valid.DateX509CRLEntryHolder. getRevocationDate()Return the date on which the certificate associated with this CRLEntry was revoked.Methods in org.bouncycastle.cert with parameters of type Date Modifier and Type Method Description booleanX509AttributeCertificateHolder. isValidOn(Date date)Return whether or not this attribute certificate is valid on a particular date.booleanX509CertificateHolder. isValidOn(Date date)Return whether or not this certificate is valid on a particular date. -
Uses of Date in org.bouncycastle.jcajce.provider.keystore.bc
Methods in org.bouncycastle.jcajce.provider.keystore.bc that return Date Modifier and Type Method Description DateBcKeyStoreSpi. engineGetCreationDate(String alias) -
Uses of Date in org.bouncycastle.jcajce.provider.keystore.pkcs12
Methods in org.bouncycastle.jcajce.provider.keystore.pkcs12 that return Date Modifier and Type Method Description DatePKCS12KeyStoreSpi. engineGetCreationDate(String alias) -
Uses of Date in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider that return Date Modifier and Type Method Description DateX509CRLObject. getNextUpdate()DateX509CertificateObject. getNotAfter()DateX509CertificateObject. getNotBefore()DateX509CRLEntryObject. getRevocationDate()DateX509CRLObject. getThisUpdate()protected static DateCertPathValidatorUtilities. getValidCertDateFromValidityModel(ExtendedPKIXParameters paramsPKIX, CertPath certPath, int index)protected static DateCertPathValidatorUtilities. getValidDate(PKIXParameters paramsPKIX)Methods in org.bouncycastle.jce.provider with parameters of type Date Modifier and Type Method Description protected static voidRFC3280CertPathUtilities. checkCRLs(ExtendedPKIXParameters paramsPKIX, X509Certificate cert, Date validDate, X509Certificate sign, PublicKey workingPublicKey, List certPathCerts)Checks a certificate if it is revoked.voidX509CertificateObject. checkValidity(Date date)SetPKIXCRLUtil. findCRLs(X509CRLStoreSelector crlselect, ExtendedPKIXParameters paramsPKIX, Date currentDate)protected static voidCertPathValidatorUtilities. getCertStatus(Date validDate, X509CRL crl, Object cert, org.bouncycastle.jce.provider.CertStatus certStatus)protected static SetCertPathValidatorUtilities. getCompleteCRLs(DistributionPoint dp, Object cert, Date currentDate, ExtendedPKIXParameters paramsPKIX)Fetches complete CRLs according to RFC 3280.protected static SetCertPathValidatorUtilities. getDeltaCRLs(Date currentDate, ExtendedPKIXParameters paramsPKIX, X509CRL completeCRL)Fetches delta CRLs according to RFC 3280 section 5.2.4.protected static SetRFC3280CertPathUtilities. processCRLA1i(Date currentDate, ExtendedPKIXParameters paramsPKIX, X509Certificate cert, X509CRL crl)protected static Set[]RFC3280CertPathUtilities. processCRLA1ii(Date currentDate, ExtendedPKIXParameters paramsPKIX, X509Certificate cert, X509CRL crl)protected static voidRFC3280CertPathUtilities. processCRLI(Date validDate, X509CRL deltacrl, Object cert, org.bouncycastle.jce.provider.CertStatus certStatus, ExtendedPKIXParameters pkixParams)protected static voidRFC3280CertPathUtilities. processCRLJ(Date validDate, X509CRL completecrl, Object cert, org.bouncycastle.jce.provider.CertStatus certStatus) -
Uses of Date in org.bouncycastle.x509
Methods in org.bouncycastle.x509 that return Date Modifier and Type Method Description DateX509AttributeCertificate. getNotAfter()Return the date after which the certificate is not valid.DateX509V2AttributeCertificate. getNotAfter()Deprecated.DateX509AttributeCertificate. getNotBefore()Return the date before which the certificate is not valid.DateX509V2AttributeCertificate. getNotBefore()Deprecated.Methods in org.bouncycastle.x509 with parameters of type Date Modifier and Type Method Description voidX509AttributeCertificate. checkValidity(Date date)voidX509V2AttributeCertificate. checkValidity(Date date)Deprecated.voidX509V1CertificateGenerator. setNotAfter(Date date)Deprecated.voidX509V3CertificateGenerator. setNotAfter(Date date)Deprecated.voidX509V1CertificateGenerator. setNotBefore(Date date)Deprecated.voidX509V3CertificateGenerator. setNotBefore(Date date)Deprecated. -
Uses of Date in org.conscrypt
Methods in org.conscrypt that return Date Modifier and Type Method Description DateTrustedCertificateKeyStoreSpi. engineGetCreationDate(String alias)DateTrustedCertificateStore. getCreationDate(String alias)DateOpenSSLX509CRL. getNextUpdate()DateOpenSSLX509Certificate. getNotAfter()DateOpenSSLX509Certificate. getNotBefore()DateOpenSSLX509CRLEntry. getRevocationDate()DateOpenSSLX509CRL. getThisUpdate()Methods in org.conscrypt with parameters of type Date Modifier and Type Method Description voidOpenSSLX509Certificate. checkValidity(Date date)