Uses of Class
java.util.Date
-
Packages that use Date 软件包 描述 java.security 提供安全框架的类和接口。java.security.cert 提供用于解析和管理证书,证书吊销列表(CRL)和证书路径的类和接口。java.sql 提供使用Java™编程语言访问和处理存储在数据源(通常是关系数据库)中的数据的API。java.text 提供用于以独立于自然语言的方式处理文本,日期,数字和消息的类和接口。java.util 包含集合框架,一些国际化支持类,服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,位数组和几个其他实用程序类。java.util.concurrent.locks 接口和类,提供用于锁定和等待与内置同步和监视器不同的条件的框架。javax.management.openmbean 提供开放数据类型和Open MBean描述符类。javax.management.timer 提供Timer MBean的定义。javax.print.attribute 提供描述Java™打印服务属性类型的类和接口,以及如何将它们收集到属性集中。javax.print.attribute.standard 包javax.print.attribute.standard
包含特定打印属性的类。javax.security.auth.kerberos 此程序包包含与Kerberos网络身份验证协议相关的实用程序类。javax.security.cert 提供公钥证书的类。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.xml.datatype 定义XML / Java类型映射。 -
-
Uses of Date in java.security
Methods in java.security that return Date 变量和类型 方法 描述 abstract Date
KeyStoreSpi. engineGetCreationDate(String alias)
返回给定别名标识的条目的创建日期。Date
KeyStore. getCreationDate(String alias)
返回给定别名标识的条目的创建日期。Date
Timestamp. getTimestamp()
返回生成时间戳的日期和时间。Constructors in java.security with parameters of type Date 构造器 描述 Timestamp(Date timestamp, CertPath signerCertPath)
构造一个时间戳。 -
Uses of Date in java.security.cert
Methods in java.security.cert that return Date 变量和类型 方法 描述 Date
X509CertSelector. getCertificateValid()
返回certificateValid标准。Date
PKIXParameters. getDate()
返回应确定证书路径有效性的时间。Date
X509CRLSelector. getDateAndTime()
返回dateAndTime标准。Date
CertificateRevokedException. getInvalidityDate()
返回无效日期,如CertificateRevokedException
的无效日期扩展中所指定。abstract Date
X509CRL. getNextUpdate()
从CRL获取nextUpdate
日期。abstract Date
X509Certificate. getNotAfter()
从证书的有效期获取notAfter
日期。abstract Date
X509Certificate. getNotBefore()
从证书的有效期获取notBefore
日期。Date
X509CertSelector. getPrivateKeyValid()
返回privateKeyValid标准。Date
CertificateRevokedException. getRevocationDate()
返回证书被撤销的日期。abstract Date
X509CRLEntry. getRevocationDate()
从此X509CRLEntry( revocationDate)获取吊销日期。abstract Date
X509CRL. getThisUpdate()
从CRL获取thisUpdate
日期。Methods in java.security.cert with parameters of type Date 变量和类型 方法 描述 abstract void
X509Certificate. checkValidity(Date date)
检查给定日期是否在证书的有效期内。void
X509CertSelector. setCertificateValid(Date certValid)
设置certificateValid标准。void
PKIXParameters. setDate(Date date)
设置应确定证书路径有效性的时间。void
X509CRLSelector. setDateAndTime(Date dateAndTime)
设置dateAndTime标准。void
X509CertSelector. setPrivateKeyValid(Date privateKeyValid)
设置privateKeyValid标准。Constructors in java.security.cert with parameters of type Date 构造器 描述 CertificateRevokedException(Date revocationDate, CRLReason reason, X500Principal authority, Map<String,Extension> extensions)
使用指定的吊销日期,原因代码,授权名称和扩展映射构造CertificateRevokedException
。 -
Uses of Date in java.sql
Subclasses of Date in java.sql 变量和类型 类 描述 class
Date
一个围绕毫秒值的瘦包装器,允许JDBC将其标识为SQLDATE
值。class
Time
java.util.Date
类的一个瘦包装器,允许JDBC API将其标识为SQLTIME
值。class
Timestamp
一个围绕java.util.Date
的瘦包装器,允许JDBC API将其标识为SQLTIMESTAMP
值。Methods in java.sql with parameters of type Date 变量和类型 方法 描述 int
Timestamp. compareTo(Date o)
将此Timestamp
对象与给定的Date
对象进行比较。 -
Uses of Date in java.text
Methods in java.text that return Date 变量和类型 方法 描述 Date
SimpleDateFormat. get2DigitYearStart()
返回100年期间的开始日期2位数年份被解释为在其中。Date
DateFormat. parse(String source)
从给定字符串的开头解析文本以生成日期。abstract Date
DateFormat. parse(String source, ParsePosition pos)
根据给定的解析位置解析日期/时间字符串。Date
SimpleDateFormat. parse(String text, ParsePosition pos)
从字符串解析文本以生成Date
。Methods in java.text with parameters of type Date 变量和类型 方法 描述 String
DateFormat. format(Date date)
将Date
格式化为日期时间字符串。abstract StringBuffer
DateFormat. format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition)
将Date
格式化为日期时间字符串。StringBuffer
SimpleDateFormat. format(Date date, StringBuffer toAppendTo, FieldPosition pos)
将给定的Date
为日期/时间字符串,并将结果附加到给定的StringBuffer
。void
SimpleDateFormat. set2DigitYearStart(Date startDate)
设置100年期间2位数年份将被解释为在用户指定的日期开始。 -
Uses of Date in java.util
Methods in java.util that return Date 变量和类型 方法 描述 static Date
Date. from(Instant instant)
从Instant
对象获得Date
的实例。Date
GregorianCalendar. getGregorianChange()
获取公历日历更改日期。Date
Calendar. getTime()
Methods in java.util with parameters of type Date 变量和类型 方法 描述 boolean
Date. after(Date when)
测试此日期是否在指定日期之后。boolean
Date. before(Date when)
测试此日期是否在指定日期之前。int
Date. compareTo(Date anotherDate)
比较两个日期的订购。boolean
SimpleTimeZone. inDaylightTime(Date date)
查询给定日期是否为夏令时。abstract boolean
TimeZone. inDaylightTime(Date date)
查询给定的date
是否处于此时区的夏令时。void
Timer. schedule(TimerTask task, Date time)
计划在指定时间执行指定的任务。void
Timer. schedule(TimerTask task, Date firstTime, long period)
从指定时间开始,为重复的 固定延迟执行安排指定的任务。void
Timer. scheduleAtFixedRate(TimerTask task, Date firstTime, long period)
从指定时间开始,为重复的 固定速率执行安排指定的任务。void
GregorianCalendar. setGregorianChange(Date date)
设置GregorianCalendar
更改日期。Calendar.Builder
Calendar.Builder. setInstant(Date instant)
设置即时参数到instant
由给定值Date
。void
Calendar. setTime(Date date)
使用给定的Date
设置此日历的时间。 -
Uses of Date in java.util.concurrent.locks
Methods in java.util.concurrent.locks with parameters of type Date 变量和类型 方法 描述 boolean
AbstractQueuedLongSynchronizer.ConditionObject. awaitUntil(Date deadline)
实现绝对定时条件等待。boolean
AbstractQueuedSynchronizer.ConditionObject. awaitUntil(Date deadline)
实现绝对定时条件等待。boolean
Condition. awaitUntil(Date deadline)
导致当前线程等待,直到发出信号或中断,或者指定的截止时间过去。 -
Uses of Date in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Date 变量和类型 字段 描述 static SimpleType<Date>
SimpleType. DATE
描述其Java类名称为java.util.Date
值的SimpleType
实例。 -
Uses of Date in javax.management.timer
Methods in javax.management.timer that return Date 变量和类型 方法 描述 Date
Timer. getDate(Integer id)
获取与计时器通知关联的日期的副本。Date
TimerMBean. getDate(Integer id)
获取与计时器通知关联的日期的副本。Methods in javax.management.timer with parameters of type Date 变量和类型 方法 描述 Integer
Timer. addNotification(String type, String message, Object userData, Date date)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到与事件给定日期以及null时段和数量的通知列表中。Integer
Timer. addNotification(String type, String message, Object userData, Date date, long period)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到带有给定日期和时段,以及null出现数量的通知列表中。Integer
Timer. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到与事件的定日期,时段和数量的通知列表中。Integer
Timer. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到与事件的定日期,时段和数量的通知列表中。Integer
TimerMBean. addNotification(String type, String message, Object userData, Date date)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到与事件给定日期以及null时段和数量的通知列表中。Integer
TimerMBean. addNotification(String type, String message, Object userData, Date date, long period)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到带有给定日期和时段,以及null出现数量的通知列表中。Integer
TimerMBean. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到与事件的定日期,时段和数量的通知列表中。Integer
TimerMBean. addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)
创建具有指定的新计时器通知type
,message
和userData
并将其插入到与事件的定日期,时段和数量的通知列表中。 -
Uses of Date in javax.print.attribute
Methods in javax.print.attribute that return Date 变量和类型 方法 描述 Date
DateTimeSyntax. getValue()
返回此日期时间属性的值java.util.Date
。Constructors in javax.print.attribute with parameters of type Date 构造器 描述 DateTimeSyntax(Date value)
使用给定的java.util.Date
值构造新的日期时间属性。 -
Uses of Date in javax.print.attribute.standard
Constructors in javax.print.attribute.standard with parameters of type Date 构造器 描述 DateTimeAtCompleted(Date dateTime)
使用给定的Date
值在已完成属性上构造新的日期时间。DateTimeAtCreation(Date dateTime)
使用给定的Date
值在creation属性上构造新的日期时间。DateTimeAtProcessing(Date dateTime)
使用给定的Date
值在处理属性上构造新的日期时间。JobHoldUntil(Date dateTime)
使用给定的Date
值构造一个新的作业保持到date-time属性。 -
Uses of Date in javax.security.auth.kerberos
Methods in javax.security.auth.kerberos that return Date 变量和类型 方法 描述 Date
KerberosTicket. getAuthTime()
返回客户端的身份验证时间。Date
KerberosTicket. getEndTime()
返回此故障单有效期的到期时间。Date
KerberosTicket. getRenewTill()
返回此故障单的最新到期时间,包括所有续订。Date
KerberosTicket. getStartTime()
返回此故障单有效期的开始时间。Constructors in javax.security.auth.kerberos with parameters of type Date 构造器 描述 KerberosTicket(byte[] asn1Encoding, KerberosPrincipal client, KerberosPrincipal server, byte[] sessionKey, int keyType, boolean[] flags, Date authTime, Date startTime, Date endTime, Date renewTill, InetAddress[] clientAddresses)
使用客户端从KDC接收或从缓存中读取的凭证信息构造KerberosTicket
。 -
Uses of Date in javax.security.cert
Methods in javax.security.cert that return Date 变量和类型 方法 描述 abstract Date
X509Certificate. getNotAfter()
已过时。从证书的有效期获取notAfter
日期。abstract Date
X509Certificate. getNotBefore()
已过时。从证书的有效期获取notBefore
日期。Methods in javax.security.cert with parameters of type Date 变量和类型 方法 描述 abstract void
X509Certificate. checkValidity(Date date)
已过时。检查指定日期是否在证书的有效期内。 -
Uses of Date in javax.swing
Methods in javax.swing that return Date 变量和类型 方法 描述 Date
SpinnerDateModel. getDate()
返回此序列中Date
的当前元素。Methods in javax.swing that return types with arguments of type Date 变量和类型 方法 描述 Comparable<Date>
SpinnerDateModel. getEnd()
返回序列中的最后一个Date
。Comparable<Date>
SpinnerDateModel. getStart()
返回序列中的第一个Date
。Methods in javax.swing with parameters of type Date 变量和类型 方法 描述 static <M,I>
RowFilter<M,I>RowFilter. dateFilter(RowFilter.ComparisonType type, Date date, int... indices)
返回RowFilter
,其中包含至少有一个符合指定条件的Date
值的条目。Method parameters in javax.swing with type arguments of type Date 变量和类型 方法 描述 void
SpinnerDateModel. setEnd(Comparable<Date> end)
按此顺序更改Date
s的上限。void
SpinnerDateModel. setStart(Comparable<Date> start)
更改此序列中日期的下限。Constructors in javax.swing with parameters of type Date 构造器 描述 SpinnerDateModel(Date value, Comparable<Date> start, Comparable<Date> end, int calendarField)
创建一个SpinnerDateModel
,表示start
和end
之间的日期序列。Constructor parameters in javax.swing with type arguments of type Date 构造器 描述 SpinnerDateModel(Date value, Comparable<Date> start, Comparable<Date> end, int calendarField)
创建一个SpinnerDateModel
,表示start
和end
之间的日期序列。 -
Uses of Date in javax.xml.datatype
Methods in javax.xml.datatype with parameters of type Date 变量和类型 方法 描述 void
Duration. addTo(Date date)
将此持续时间添加到Date
对象。long
Duration. getTimeInMillis(Date startInstant)
以毫秒为单位返回持续时间的长度。
-