| Modifier and Type | Class and Description |
|---|---|
static class |
AntTask.AndElement
Combines subexpressions logically: Evaluates its subexpressions sequentially; if one of them evaluates to
false, then the remaining subexpressions are not evaluated, and false is returned. |
static class |
AntTask.CatElement
Copies the contents of the current file to STDOUT and evaluates to TRUE.
|
static class |
AntTask.ChecksumElement
Calculates a "checksum" of the contents, prints it and returns true.
|
static class |
AntTask.CommaElement
Evaluates subexpressions sequentially; returns the value of the last subexpression.
|
static class |
AntTask.CopyElement
Copies the contents of the current file to the named file and evaluates to TRUE.
|
static class |
AntTask.DeleteElement
Delete file; Evaluates to
true if removal succeeded. |
static class |
AntTask.DigestElement
Calculates a "message digest" of the contents, prints it and returns true.
|
static class |
AntTask.DisassembleElement
Disassembles a Java .class file to STDOUT or a given file and evaluates to
true. |
static class |
AntTask.EchoElement
Prints a text and evaluates to
true. |
static class |
AntTask.ExecElement
Executes an external command; the special string '{}' within the command is replaced with the full path of the
current file/directory/archive entry.
|
static class |
AntTask.ExecutableElement
Evaluates to
true iff the current file/directory is executable. |
static class |
AntTask.FalseElement
Evaluates to
false. |
static class |
AntTask.LsElement
Prints the file type ("
d" or "-"), readability ("r" or "-"), writability ("w" or "-"), executability ("x" or "-"), size, modification time and path, and evaluates
to true. |
static class |
AntTask.ModificationTimeElement
Checks the modification time of the current file or archive entry.
|
static class |
AntTask.NameElement
Evaluates to
true iff the name of the current file/directory/archive entry matches the given
glob. |
static class |
AntTask.NotElement
Negates its subelement expression.
|
static class |
AntTask.OrElement
Combines subexpressions logically: Evaluates its subexpressions sequentially; if one of them evaluates to
true, then the remaining subexpressions are not evaluated, and true is returned. |
static class |
AntTask.PathElement
Evaluates to
true iff the path of the current file/directory/archive entry matches the given
glob. |
static class |
AntTask.PipeElement
Copies the contents of the current file/archive entry to the STDIN of a command and returns whether the command
exited with status 0.
|
static class |
AntTask.PrintElement
Prints the path of the current file/directory/archive entry and evaluates to
true. |
static class |
AntTask.PropertyElement
Sets an ANT property.
|
static class |
AntTask.PruneElement
Evaluates to
true. |
static class |
AntTask.ReadableElement
Evaluates to
true iff the current file/directory is readable. |
static class |
AntTask.SizeElement
Checks the size of the current file or archive entry.
|
static class |
AntTask.TrueElement
Evaluates to
true. |
static class |
AntTask.TypeElement
Evaluates to whether the type of the current file/directory/archive entry matches.
|
static class |
AntTask.WritableElement
Evaluates to
true iff the current file/directory is writable. |
| Modifier and Type | Method and Description |
|---|---|
void |
AntTask.addConfigured(AntTask.ExpressionElement operand)
Another expression that will be evaluated for each directory, file and archive entry.
|
void |
AntTask.AndElement.addConfigured(AntTask.ExpressionElement operand) |
void |
AntTask.OrElement.addConfigured(AntTask.ExpressionElement operand) |
void |
AntTask.CommaElement.addConfigured(AntTask.ExpressionElement operand) |
void |
AntTask.NotElement.addConfigured(AntTask.ExpressionElement operand)
The expression to negate.
|
abstract void |
AbstractElementWithOperands.addConfigured(AntTask.ExpressionElement operand)
Another expression that will be evaluated for each directory, file and archive entry.
|
Copyright © 2019 Arno Unkrig. All rights reserved.