Class FTP.Granularity
- java.lang.Object
- 
- org.apache.tools.ant.types.EnumeratedAttribute
- 
- org.apache.tools.ant.taskdefs.optional.net.FTP.Granularity
 
 
- 
- Enclosing class:
- FTP
 
 public static class FTP.Granularity extends EnumeratedAttribute represents one of the valid timestamp adjustment values recognized by thetimestampGranularityattribute.A timestamp adjustment may be used in file transfers for checking uptodateness. MINUTE means to add one minute to the server timestamp. This is done because FTP servers typically list timestamps HH:mm and client FileSystems typically use HH:mm:ss. The default is to use MINUTE for PUT actions and NONE for GET actions, since GETs have the preserveLastModifiedoption, which takes care of the problem in most use cases where this level of granularity is an issue.
- 
- 
Field Summary- 
Fields inherited from class org.apache.tools.ant.types.EnumeratedAttributevalue
 
- 
 - 
Constructor SummaryConstructors Constructor Description Granularity()
 - 
Method SummaryModifier and Type Method Description longgetMilliseconds(int action)returns the number of milliseconds associated with the attribute, which can vary in some cases depending on the value of the action parameter.java.lang.String[]getValues()Get the valid values.- 
Methods inherited from class org.apache.tools.ant.types.EnumeratedAttributecontainsValue, getIndex, getInstance, getValue, indexOfValue, setValue, toString
 
- 
 
- 
- 
- 
Method Detail- 
getValuespublic java.lang.String[] getValues() Get the valid values.- Specified by:
- getValuesin class- EnumeratedAttribute
- Returns:
- the list of valid Granularity values
 
 - 
getMillisecondspublic long getMilliseconds(int action) returns the number of milliseconds associated with the attribute, which can vary in some cases depending on the value of the action parameter.- Parameters:
- action- SEND_FILES or GET_FILES
- Returns:
- the number of milliseconds associated with the attribute, in the context of the supplied action
 
 
- 
 
-