Package org.apache.tools.ant.types
Class FilterSet.OnMissing
- java.lang.Object
- 
- org.apache.tools.ant.types.EnumeratedAttribute
- 
- org.apache.tools.ant.types.FilterSet.OnMissing
 
 
- 
- Enclosing class:
- FilterSet
 
 public static class FilterSet.OnMissing extends EnumeratedAttribute EnumeratedAttribute to set behavior WRT missing filtersfiles: "fail" (default), "warn", "ignore".- Since:
- Ant 1.7
 
- 
- 
Field SummaryFields Modifier and Type Field Description static FilterSet.OnMissingFAILFail valuestatic FilterSet.OnMissingIGNOREIgnore valuestatic FilterSet.OnMissingWARNWarn value- 
Fields inherited from class org.apache.tools.ant.types.EnumeratedAttributevalue
 
- 
 - 
Method SummaryModifier and Type Method Description java.lang.String[]getValues()This is the only method a subclass needs to implement.- 
Methods inherited from class org.apache.tools.ant.types.EnumeratedAttributecontainsValue, getIndex, getInstance, getValue, indexOfValue, setValue, toString
 
- 
 
- 
- 
- 
Field Detail- 
FAILpublic static final FilterSet.OnMissing FAIL Fail value
 - 
WARNpublic static final FilterSet.OnMissing WARN Warn value
 - 
IGNOREpublic static final FilterSet.OnMissing IGNORE Ignore value
 
- 
 - 
Method Detail- 
getValuespublic java.lang.String[] getValues() This is the only method a subclass needs to implement..- Specified by:
- getValuesin class- EnumeratedAttribute
- Returns:
- an array holding all possible values of the enumeration.
 The order of elements must be fixed so that indexOfValue(String)always return the same index for the same value.
 
 
- 
 
-