Class JavaVersion
java.lang.Object
org.apache.tools.ant.taskdefs.condition.JavaVersion
- All Implemented Interfaces:
- Condition
An Java version condition.
- Since:
- Ant 1.10.2
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleaneval()Evaluate the condition.Get the atleast attribute.Get the atmost attribute.Get the exactly attribute.voidsetAtLeast(String atLeast) Set the atleast attribute.voidSet the atmost attribute.voidsetExactly(String exactly) Set the exactly attribute.
- 
Constructor Details- 
JavaVersionpublic JavaVersion()
 
- 
- 
Method Details- 
evalEvaluate the condition.- Specified by:
- evalin interface- Condition
- Returns:
- true if the condition is true.
- Throws:
- BuildException- if an error occurs.
 
- 
getAtLeastGet the atleast attribute.- Returns:
- the atleast attribute.
 
- 
setAtLeastSet the atleast attribute. This is of the form major.minor.point. For example 1.7.0.- Parameters:
- atLeast- the version to set
 
- 
getAtMostGet the atmost attribute.- Returns:
- the atmost attribute.
- Since:
- Ant 1.10.10
 
- 
setAtMostSet the atmost attribute. This is of the form major.minor.point. For example 11.0.2- Parameters:
- atMost- the version to set
- Since:
- Ant 1.10.10
 
- 
getExactlyGet the exactly attribute.- Returns:
- the exactly attribute.
 
- 
setExactlySet the exactly attribute. This is of the form major.minor.point. For example 1.7.0.- Parameters:
- exactly- the version to check against.
 
 
-