| java.lang.Object org.jaffa.metadata.FieldMetaData org.jaffa.metadata.DecimalFieldMetaData
DecimalFieldMetaData | public class DecimalFieldMetaData extends FieldMetaData (Code) | | An instance of this class will hold meta information for a Decimal field.
|
Method Summary | |
public Object | clone() Returns a clone of the object. | public int | compareTo(Object obj) Compares this object with another DecimalFieldMetaData object.
Note: this class has a natural ordering that is inconsistent with equals
Parameters: obj - the other DecimalFieldMetaData object. | public boolean | equals(Object obj) Compares this object with another DecimalFieldMetaData object.
Returns a true if both the objects have the same properties.
Parameters: obj - the other DecimalFieldMetaData object. | public static String | getDecimalFormat() | public Integer | getFracSize() Getter for property intSize. | public Integer | getIntSize() Getter for property intSize. | public String | getLayout() Getter for property layout. | public Double | getMaxValue() Getter for property maxValue. | public Double | getMinValue() Getter for property minValue. | public int | getWidth() Getter for property width. | public int | hashCode() Returns the hash code. | public String | toString() Returns the diagnostic information. |
DEFAULT_FRAC_SIZE | final public static int DEFAULT_FRAC_SIZE(Code) | | Default Fraction Size.
|
DEFAULT_INT_SIZE | final public static int DEFAULT_INT_SIZE(Code) | | Default Integer Size.
|
DEFAULT_WIDTH | final public static int DEFAULT_WIDTH(Code) | | Default width.
|
DecimalFieldMetaData | public DecimalFieldMetaData()(Code) | | Creates an instance.
|
DecimalFieldMetaData | public DecimalFieldMetaData(String name, String labelToken, Boolean isMandatory, String layout, Double minValue, Double maxValue, Integer intSize, Integer fracSize)(Code) | | Creates an instance.
Parameters: name - The field name. Parameters: labelToken - The token used for displaying labels. Parameters: isMandatory - Indicates if the field is mandatory. Parameters: layout - The layout. Parameters: minValue - The minimum value. Parameters: maxValue - The maximum value. Parameters: intSize - The maximum number of significant digits. Parameters: fracSize - The maximum number of fractional digits. |
clone | public Object clone()(Code) | | Returns a clone of the object.
a clone of the object. |
compareTo | public int compareTo(Object obj)(Code) | | Compares this object with another DecimalFieldMetaData object.
Note: this class has a natural ordering that is inconsistent with equals
Parameters: obj - the other DecimalFieldMetaData object. a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object. |
equals | public boolean equals(Object obj)(Code) | | Compares this object with another DecimalFieldMetaData object.
Returns a true if both the objects have the same properties.
Parameters: obj - the other DecimalFieldMetaData object. a true if both the objects have the same properties. |
getDecimalFormat | public static String getDecimalFormat()(Code) | | |
getFracSize | public Integer getFracSize()(Code) | | Getter for property intSize.
Value of property intSize. |
getIntSize | public Integer getIntSize()(Code) | | Getter for property intSize.
Value of property intSize. |
getLayout | public String getLayout()(Code) | | Getter for property layout.
Value of property layout. |
getMaxValue | public Double getMaxValue()(Code) | | Getter for property maxValue.
Value of property maxValue. |
getMinValue | public Double getMinValue()(Code) | | Getter for property minValue.
Value of property minValue. |
getWidth | public int getWidth()(Code) | | Getter for property width.
Value of property width. |
hashCode | public int hashCode()(Code) | | Returns the hash code.
the hash code. |
toString | public String toString()(Code) | | Returns the diagnostic information.
the diagnostic information. |
|
|