Interface ObjectNumberFieldMetadata

All Superinterfaces:
ObjectFieldMetadata

public interface ObjectNumberFieldMetadata extends ObjectFieldMetadata
Provides methods to retrieve common metadata on number fields.
See Also:
  • Method Details

    • getDefaultValueExpression

      DefaultValueExpressionMetadata getDefaultValueExpression()
      Retrieves the DefaultValueExpressionMetadata containing the default value expression of the given number field.
      Returns:
      a DefaultValueExpressionMetadata with a default value expression if it exists, otherwise null
    • getFormatMask

      Retrieves the FormatMaskExpressionMetadata containing the format mask expression of the given number field.
      Returns:
      a FormatMaskExpressionMetadata with the format mask expression if it exists, otherwise null
    • getMaximumValue

      BigDecimal getMaximumValue()
      Retrieves the maximum value of the given number field.
      Returns:
      the maximum value of the field. For example, 100.
    • getMinimumValue

      BigDecimal getMinimumValue()
      Retrieves the minimum value of the given number field.
      Returns:
      the minimum value of the field. For example, 1.
    • getScale

      int getScale()
      Retrieves the scale of the given number field.
      Returns:
      the scale of the field. For example, 1.