Uses of Class
org.apache.wicket.util.time.Time

Packages that use Time
org.apache.wicket The core Wicket package. 
org.apache.wicket.markup Base package for markup. 
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.image.resource Resource support for image components. 
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.resource Locale aware resouce loaders. 
org.apache.wicket.util.file File utilities. 
org.apache.wicket.util.resource Base support for resources. 
org.apache.wicket.util.string String utilities. 
org.apache.wicket.util.template Resource extensions that make working with header contributions easier and more maintainable. 
org.apache.wicket.util.thread Threading utilities. 
org.apache.wicket.util.time Utilities for working with Time(s). 
org.apache.wicket.util.value This package provides casting utilities. 
org.apache.wicket.util.watch This package provides modification watchers. 
 

Uses of Time in org.apache.wicket
 

Methods in org.apache.wicket that return Time
 Time ResourceReference.lastModifiedTime()
          Returns the last modified time of resource referenced by this reference.
 

Methods in org.apache.wicket with parameters of type Time
 void Response.setLastModifiedTime(Time time)
          Set the contents last modified time, if appropriate in the subclass.
 

Uses of Time in org.apache.wicket.markup
 

Methods in org.apache.wicket.markup that return Time
 Time MarkupResourceStream.lastModifiedTime()
           
 

Uses of Time in org.apache.wicket.markup.html
 

Fields in org.apache.wicket.markup.html declared as Time
protected  Time DynamicWebResource.ResourceState.lastModifiedTime
           
 

Methods in org.apache.wicket.markup.html that return Time
 Time PackageResource.lastModifiedTime()
          Returns the last modified time of resource
 Time JavascriptPackageResource.FilteringResourceStream.lastModifiedTime()
           
 Time DynamicWebResource.ResourceState.lastModifiedTime()
           
 Time CompressedPackageResource.CompressingResourceStream.lastModifiedTime()
           
 

Uses of Time in org.apache.wicket.markup.html.image.resource
 

Methods in org.apache.wicket.markup.html.image.resource with parameters of type Time
protected  void DynamicImageResource.setLastModifiedTime(Time time)
          set the last modified time for this resource.
 

Uses of Time in org.apache.wicket.protocol.http
 

Methods in org.apache.wicket.protocol.http with parameters of type Time
 void WebResponse.setLastModifiedTime(Time time)
           
 

Uses of Time in org.apache.wicket.resource
 

Methods in org.apache.wicket.resource that return Time
 Time TextTemplateResourceReference.lastModifiedTime()
          Returns the last modified time of the PackagedTextTemplate itself.
 Time DynamicByteArrayResource.ResourceState.lastModifiedTime()
           
 

Uses of Time in org.apache.wicket.util.file
 

Methods in org.apache.wicket.util.file that return Time
 Time File.lastModifiedTime()
          Returns a Time object representing the most recent time this file was modified.
 

Uses of Time in org.apache.wicket.util.resource
 

Methods in org.apache.wicket.util.resource that return Time
 Time ZipResourceStream.lastModifiedTime()
           
 Time XSLTResourceStream.lastModifiedTime()
          Returns always null
 Time WebExternalResourceStream.lastModifiedTime()
           
 Time UrlResourceStream.lastModifiedTime()
           
 Time PackageResourceStream.lastModifiedTime()
           
 Time FileResourceStream.lastModifiedTime()
           
 Time AbstractStringResourceStream.lastModifiedTime()
           
 Time AbstractResourceStreamWriter.lastModifiedTime()
          Just returns now.
 Time AbstractResourceStream.lastModifiedTime()
           
 

Methods in org.apache.wicket.util.resource with parameters of type Time
 void AbstractStringResourceStream.setLastModified(Time lastModified)
           
 

Uses of Time in org.apache.wicket.util.string
 

Methods in org.apache.wicket.util.string that return Time
 Time StringValue.toOptionalTime()
          Convert to object types, returning null if text is null.
 Time StringValue.toTime()
          Convert this text to a time instance.
 Time StringValue.toTime(Time defaultValue)
          Convert to primitive types, returning default value if text is null.
 

Methods in org.apache.wicket.util.string with parameters of type Time
 Time StringValue.toTime(Time defaultValue)
          Convert to primitive types, returning default value if text is null.
 

Uses of Time in org.apache.wicket.util.template
 

Methods in org.apache.wicket.util.template that return Time
 Time TextTemplateDecorator.lastModifiedTime()
           
 

Methods in org.apache.wicket.util.template with parameters of type Time
 void TextTemplateDecorator.setLastModified(Time lastModified)
           
 

Uses of Time in org.apache.wicket.util.thread
 

Methods in org.apache.wicket.util.thread with parameters of type Time
 void Task.setStartTime(Time startTime)
          Sets start time for this task.
 

Uses of Time in org.apache.wicket.util.time
 

Fields in org.apache.wicket.util.time declared as Time
static Time Time.START_OF_UNIX_TIME
          the beginning of UNIX time: January 1, 1970, 0:00 GMT.
 

Methods in org.apache.wicket.util.time that return Time
 Time Time.add(Duration duration)
          Adds the given Duration to this Time object, moving the time into the future.
 Time TimeFrame.getEnd()
          Retrieves the end Time of this TimeFrame.
 Time TimeFrame.getStart()
          Retrieves the start Time of this TimeFrame.
static Time Time.milliseconds(long time)
          Retrieves a Time instance based on the given milliseconds.
 Time TimeOfDay.next()
          Retrieves the next occurrence of this TimeOfDay in local time.
 Time TimeOfDay.next(Calendar calendar)
          Retrieves the next occurrence of this TimeOfDay on the given Calendar.
static Time Time.now()
          Retrieves a Time instance based on the current time.
static Time Time.parseDate(Calendar calendar, String string)
          Retrieves a Time instance by parsing 'yyyy.MM.dd' format.
static Time Time.parseDate(String string)
          Retrieves a Time instance by parsing 'yyyy.MM.dd' format using a local time Calendar.
 Time Time.subtract(Duration duration)
          Subtracts the given Duration from this Time object, moving the time into the past.
static Time Time.valueOf(Calendar calendar, String string)
          Retrieves a Time instance by parsing 'yyyy.MM.dd-h.mma' format.
static Time Time.valueOf(Calendar calendar, TimeOfDay timeOfDay)
          Retrieves a Time instance based on the given Calendar and TimeOfDay objects.
static Time Time.valueOf(Date date)
          Retrieves a Time instance based on the given Date object.
static Time Time.valueOf(long time)
          Retrieves a Time instance based on the given milliseconds.
static Time Time.valueOf(String string)
          Retrieves a Time instance by parsing 'yyyy.MM.dd-h.mma' format.
static Time Time.valueOf(String string, String pattern)
          Retrieves a Time instance by parsing 'pattern' format.
static Time Time.valueOf(TimeOfDay timeOfDay)
          Retrieves a Time instance based on the given TimeOfDay object.
 

Methods in org.apache.wicket.util.time with parameters of type Time
 boolean TimeFrame.contains(Time time)
          Determines if this TimeFrame contains a given point in time.
static Duration Duration.elapsed(Time start)
          Calculates the amount of time elapsed since start time.
 Object TimeMap.get(Time time)
          Retrieves an Object for the given Time value.
 Duration Time.subtract(Time that)
          Subtract time from this and returns the difference as a Duration object.
static TimeOfDay TimeOfDay.valueOf(Calendar calendar, Time time)
          Converts a Time instance and Calendar to a TimeOfDay instance.
static TimeOfDay TimeOfDay.valueOf(Time time)
          Converts a String value to a TimeOfDay instance.
static TimeFrame TimeFrame.valueOf(Time start, Duration duration)
          Creates a TimeFrame for a start Time and Duration.
static TimeFrame TimeFrame.valueOf(Time start, Time end)
          Creates a TimeFrame for given start and end Times.
 

Uses of Time in org.apache.wicket.util.value
 

Methods in org.apache.wicket.util.value that return Time
 Time ValueMap.getAsTime(String key)
           
 Time IValueMap.getAsTime(String key)
          Retrieves a Time value by key.
 Time CopyOnWriteValueMap.getAsTime(String key)
           
 Time ValueMap.getAsTime(String key, Time defaultValue)
           
 Time IValueMap.getAsTime(String key, Time defaultValue)
          Retrieves a Time value by key.
 Time CopyOnWriteValueMap.getAsTime(String key, Time defaultValue)
           
 Time ValueMap.getTime(String key)
           
 Time IValueMap.getTime(String key)
          Retrieves a Time object by key.
 Time CopyOnWriteValueMap.getTime(String key)
           
 

Methods in org.apache.wicket.util.value with parameters of type Time
 Time ValueMap.getAsTime(String key, Time defaultValue)
           
 Time IValueMap.getAsTime(String key, Time defaultValue)
          Retrieves a Time value by key.
 Time CopyOnWriteValueMap.getAsTime(String key, Time defaultValue)
           
 

Uses of Time in org.apache.wicket.util.watch
 

Methods in org.apache.wicket.util.watch that return Time
 Time IModifiable.lastModifiedTime()
          Gets the last time this modifiable thing changed.
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.