FlexIntegerpublic class FlexInteger extends Object Helper class which can be used for Ant task attribute setter methods to allow
the build file to specify an integer in either decimal, octal, or hexadecimal
format. |
Fields Summary |
---|
private Integer | value |
Constructors Summary |
---|
public FlexInteger(String value)Constructor used by Ant's introspection mechanism for attribute population
this.value = Integer.decode(value);
|
Methods Summary |
---|
public int | intValue()Returns the decimal integer value
return value.intValue();
| public java.lang.String | toString()Overridden method to return the decimal value for display
return value.toString();
|
|