org.apache.tools.ant.taskdefs
public class Length extends Task implements Condition
Since: Ant 1.6.3
Nested Class Summary | |
---|---|
static class | Length.FileMode EnumeratedAttribute operation mode |
static class | Length.When
EnumeratedAttribute for the when attribute. |
Method Summary | |
---|---|
void | add(FileSet fs)
Add a FileSet. |
void | add(ResourceCollection c)
Add a ResourceCollection. |
boolean | eval()
Fulfill the condition contract. |
void | execute()
Execute the length task. |
boolean | getTrim()
Learn whether strings will be trimmed. |
void | setFile(File file)
Set the single file for this task. |
void | setLength(long ell)
Set the target count number for use as a Condition. |
void | setMode(Length.FileMode m)
Set the execution mode for working with files. |
void | setProperty(String property)
The property in which the length will be stored. |
void | setString(String string)
Set the string whose length to get. |
void | setTrim(boolean trim)
Set whether to trim in string mode. |
void | setWhen(Length.When w)
Set the comparison for use as a Condition. |
void | setWhen(Comparison c)
Set the comparison for use as a Condition. |
Parameters: fs the FileSet
to add.
Parameters: c the ResourceCollection
to add.
Since: Ant 1.7
Returns: true if the condition is true.
Throws: BuildException if an error occurs.
Returns: boolean trim setting.
Parameters: file the File
whose length to retrieve.
Parameters: ell the long length to compare with.
Parameters: m the FileMode
to use.
Parameters: property the String
property key.
Parameters: string String
.
Parameters: trim boolean
.
Parameters: w EnumeratedAttribute When.
See Also: Comparison
Parameters: c Comparison.
Since: Ant 1.7
See Also: Comparison