Class JavaVersion
- java.lang.Object
- 
- org.apache.tools.ant.taskdefs.condition.JavaVersion
 
- 
- 
Constructor SummaryConstructors Constructor Description JavaVersion()
 - 
Method SummaryModifier and Type Method Description booleaneval()Evaluate the condition.java.lang.StringgetAtLeast()Get the atleast attribute.java.lang.StringgetExactly()Get the exactly attribute.voidsetAtLeast(java.lang.String atLeast)Set the atleast attribute.voidsetExactly(java.lang.String exactly)Set the exactly attribute.
 
- 
- 
- 
Method Detail- 
evalpublic boolean eval() throws BuildExceptionEvaluate the condition.- Specified by:
- evalin interface- Condition
- Returns:
- true if the condition is true.
- Throws:
- BuildException- if an error occurs.
 
 - 
getAtLeastpublic java.lang.String getAtLeast() Get the atleast attribute.- Returns:
- the atleast attribute.
 
 - 
setAtLeastpublic void setAtLeast(java.lang.String atLeast) Set the atleast attribute. This is of the form major.minor.point. For example 1.7.0.- Parameters:
- atLeast- the version to check against.
 
 - 
getExactlypublic java.lang.String getExactly() Get the exactly attribute.- Returns:
- the exactly attribute.
 
 - 
setExactlypublic void setExactly(java.lang.String exactly) Set the exactly attribute. This is of the form major.minor.point. For example 1.7.0.- Parameters:
- exactly- the version to check against.
 
 
- 
 
-