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

Packages that use Time
org.apache.wicket.util.file File utilities. 
org.apache.wicket.util.io Input/Output utilities. 
org.apache.wicket.util.resource Base support for resources. 
org.apache.wicket.util.string String utilities. 
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.util.file
 

Methods in org.apache.wicket.util.file that return Time
static Time Files.getLastModified(File file)
          get last modification timestamp for file
 Time File.lastModifiedTime()
          Returns a Time object representing the most recent time this file was modified.
 

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

Methods in org.apache.wicket.util.io that return Time
static Time Connections.getLastModified(URL url)
          Gets last modified date of the given URL
 

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

Methods in org.apache.wicket.util.resource that return Time
 Time AbstractResourceStreamWriter.lastModifiedTime()
          Just returns now.
 Time XSLTResourceStream.lastModifiedTime()
          Returns always null
 Time ZipResourceStream.lastModifiedTime()
           
 Time AbstractResourceStream.lastModifiedTime()
           
 Time FileResourceStream.lastModifiedTime()
           
 Time AbstractStringResourceStream.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 or empty.
 Time StringValue.toTime()
          Convert this text to a time instance.
 Time StringValue.toTime(Time defaultValue)
          Convert to time, returning default value if text is inconvertible.
 

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

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.millis(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(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 CopyOnWriteValueMap.getAsTime(String key)
           
 Time ValueMap.getAsTime(String key)
           
 Time IValueMap.getAsTime(String key)
          Retrieves a Time value by key.
 Time CopyOnWriteValueMap.getAsTime(String key, Time defaultValue)
           
 Time ValueMap.getAsTime(String key, Time defaultValue)
           
 Time IValueMap.getAsTime(String key, Time defaultValue)
          Retrieves a Time value by key.
 Time CopyOnWriteValueMap.getTime(String key)
           
 Time ValueMap.getTime(String key)
           
 Time IValueMap.getTime(String key)
          Retrieves a Time object by key.
 

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

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

Fields in org.apache.wicket.util.watch declared as Time
 Time ModificationWatcher.Entry.lastModifiedTime
           
 

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



Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.