- java.lang.Object
-
- javax.jnlp.DownloadService2.ResourceSpec
-
- Enclosing interface:
- DownloadService2
public static class DownloadService2.ResourceSpec extends Object
指定资源查询的模式作为参数,并将结果保留在DownloadService2.getCachedResources(javax.jnlp.DownloadService2.ResourceSpec)
和DownloadService2.getUpdateAvailableResources(javax.jnlp.DownloadService2.ResourceSpec)
中 。
对于url
和version
属性,支持{code java.util.regex}中记录的标准正则表达式。
-
-
构造方法摘要
构造方法 Constructor 描述 ResourceSpec(String url, String version, int type)
创建一个新的ResourceSpec实例。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 long
getExpirationDate()
返回资源到期的时间。long
getLastModified()
返回上次修改资源的时间。long
getSize()
返回资源的大小。int
getType()
返回此资源的类型。String
getUrl()
返回此资源的URL。String
getVersion()
返回此资源的版本。
-
-
-
方法详细信息
-
getUrl
public String getUrl()
返回此资源的URL。- 结果
- 该资源的URL
-
getVersion
public String getVersion()
返回此资源的版本。- 结果
- 该资源的版本
-
getType
public int getType()
返回此资源的类型。- 结果
- 该资源的类型
-
getSize
public long getSize()
返回资源的大小。 这仅对作为DownloadService2.getCachedResources(javax.jnlp.DownloadService2.ResourceSpec)
或DownloadService2.getUpdateAvailableResources(javax.jnlp.DownloadService2.ResourceSpec)
的结果返回的ResourceSpecs有用。- 结果
- 资源的大小
-
getLastModified
public long getLastModified()
返回上次修改资源的时间。
返回的值与System.currentTimeMillis()的返回值具有相同的语义。
值0
表示未知数。- 结果
- 上次修改资源的时间
-
getExpirationDate
public long getExpirationDate()
返回资源到期的时间。
返回的值与System.currentTimeMillis()的返回值具有相同的语义。
值0
意味着未知数。- 结果
- the time of expiration of the resource
-
-