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 接口和类提供了一个框架,用于锁定和等待与内置同步和监视器不同的条件。javafx.scene.web 该软件包提供了加载和显示Web内容的方法。javafx.util.converter 此包用于JavaFX的标准字符串转换器。javax.management.openmbean 提供打开的数据类型和Open MBean描述符类。javax.management.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 Modifier and Type 方法 描述 abstract Date
KeyStoreSpi. engineGetCreationDate(String alias)
返回由给定别名标识的条目的创建日期。Date
KeyStore. getCreationDate(String alias)
返回由给定别名标识的条目的创建日期。Date
Timestamp. getTimestamp()
返回生成时间戳的日期和时间。Constructors in java.security with parameters of type Date Constructor 描述 Timestamp(Date timestamp, CertPath signerCertPath)
构建时间戳 -
Uses of Date in java.security.cert
Methods in java.security.cert that return Date Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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 Constructor 描述 CertificateRevokedException(Date revocationDate, CRLReason reason, X500Principal authority, Map<String,Extension> extensions)
构造具有指定撤销日期,原因代码,权限名称和扩展名映射的CertificateRevokedException
。 -
Uses of Date in java.sql
Subclasses of Date in java.sql Modifier and Type Class 描述 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 Modifier and Type 方法 描述 int
Timestamp. compareTo(Date o)
将此Timestamp
对象与给定的Date
对象进行比较。 -
Uses of Date in java.text
Methods in java.text that return Date Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 String
DateFormat. format(Date date)
将日期格式化成日期/时间字符串。abstract StringBuffer
DateFormat. format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition)
将日期格式化成日期/时间字符串。StringBuffer
SimpleDateFormat. format(Date date, StringBuffer toAppendTo, FieldPosition pos)
将给定的Date
为日期/时间字符串,并将结果追加到给定的StringBuffer
。void
SimpleDateFormat. set2DigitYearStart(Date startDate)
设置100年期间,两位数年份将被解释为在用户指定的日期开始。 -
Uses of Date in java.util
Methods in java.util that return Date Modifier and Type 方法 描述 static Date
Date. from(Instant instant)
从Instant
对象获取Date
的实例。Date
GregorianCalendar. getGregorianChange()
获取公历日历更改日期。Date
Calendar. getTime()
Methods in java.util with parameters of type Date Modifier and Type 方法 描述 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
是否在此时区的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 Modifier and Type 方法 描述 boolean
AbstractQueuedLongSynchronizer.ConditionObject. awaitUntil(Date deadline)
实现绝对定时条件等待。boolean
AbstractQueuedSynchronizer.ConditionObject. awaitUntil(Date deadline)
实现绝对定时条件等待。boolean
Condition. awaitUntil(Date deadline)
使当前线程等待直到发出信号或中断,或者指定的最后期限过去。 -
Uses of Date in javafx.scene.web
Methods in javafx.scene.web that return Date Modifier and Type 方法 描述 Date
WebHistory.Entry. getLastVisitedDate()
获取属性lastVisitedDate的值。Methods in javafx.scene.web that return types with arguments of type Date Modifier and Type 方法 描述 ReadOnlyObjectProperty<Date>
WebHistory.Entry. lastVisitedDateProperty()
定义页面最后访问的Date
。 -
Uses of Date in javafx.util.converter
Methods in javafx.util.converter that return Date Modifier and Type 方法 描述 Date
DateTimeStringConverter. fromString(String value)
将提供的字符串转换为由特定转换器定义的对象。Methods in javafx.util.converter with parameters of type Date Modifier and Type 方法 描述 String
DateTimeStringConverter. toString(Date value)
将提供的对象转换为其字符串形式。 -
Uses of Date in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Date Modifier and Type Field 描述 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 Modifier and Type 方法 描述 Date
Timer. getDate(Integer id)
获取与定时器通知相关联的日期的副本。Date
TimerMBean. getDate(Integer id)
获取与定时器通知相关联的日期的副本。Methods in javax.management.timer with parameters of type Date Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 Date
DateTimeSyntax. getValue()
返回此日期时间属性的java.util.Date
值。Constructors in javax.print.attribute with parameters of type Date Constructor 描述 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 Constructor 描述 DateTimeAtCompleted(Date dateTime)
使用给定的Date
值在完成属性中构建新的日期时间。DateTimeAtCreation(Date dateTime)
使用给定的Date
值创建一个新的创建日期时间属性。DateTimeAtProcessing(Date dateTime)
在给定的Date
值处理属性时构造一个新的日期时间。JobHoldUntil(Date dateTime)
构造新的作业保持,直到date-time属性与给定的Date
值。 -
Uses of Date in javax.security.auth.kerberos
Methods in javax.security.auth.kerberos that return Date Modifier and Type 方法 描述 Date
KerberosTicket. getAuthTime()
返回客户端进行身份验证的时间。Date
KerberosTicket. getEndTime()
返回此票证有效期的到期时间。Date
KerberosTicket. getRenewTill()
返回此机票的最新到期时间,包括所有续订。Date
KerberosTicket. getStartTime()
返回此票证有效期的开始时间。Constructors in javax.security.auth.kerberos with parameters of type Date Constructor 描述 KerberosTicket(byte[] asn1Encoding, KerberosPrincipal client, KerberosPrincipal server, byte[] sessionKey, int keyType, boolean[] flags, Date authTime, Date startTime, Date endTime, Date renewTill, InetAddress[] clientAddresses)
构建一个KerberosTicket
使用客户端从KDC接收或从缓存读取的凭据信息。 -
Uses of Date in javax.security.cert
Methods in javax.security.cert that return Date Modifier and Type 方法 描述 abstract Date
X509Certificate. getNotAfter()
已过时。从证书的有效期获取notAfter
日期。abstract Date
X509Certificate. getNotBefore()
已过时。从证书的有效期获取notBefore
日期。Methods in javax.security.cert with parameters of type Date Modifier and Type 方法 描述 abstract void
X509Certificate. checkValidity(Date date)
已过时。检查指定的日期是否在证书的有效期内。 -
Uses of Date in javax.swing
Methods in javax.swing that return Date Modifier and Type 方法 描述 Date
SpinnerDateModel. getDate()
返回此序列中的当前元素Date
s。Methods in javax.swing that return types with arguments of type Date Modifier and Type 方法 描述 Comparable<Date>
SpinnerDateModel. getEnd()
按顺序返回最后一个Date
。Comparable<Date>
SpinnerDateModel. getStart()
返回序列中的第一个Date
。Methods in javax.swing with parameters of type Date Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 void
SpinnerDateModel. setEnd(Comparable<Date> end)
按此顺序更改Date
的上限。void
SpinnerDateModel. setStart(Comparable<Date> start)
更改此顺序中日期的下限。Constructors in javax.swing with parameters of type Date Constructor 描述 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 Constructor 描述 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 Modifier and Type 方法 描述 void
Duration. addTo(Date date)
将此持续时间添加到Date
对象。long
Duration. getTimeInMillis(Date startInstant)
以毫秒为单位返回持续时间的长度。
-