Interface IValueFormatDefinition

All Superinterfaces:
Serializable
All Known Implementing Classes:
ValueFormatDefinition, ValueFormatDefinition

public interface IValueFormatDefinition extends Serializable
This class holds a single value format definition for the application configuration.
Since:
8.0
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the language code of the language that should be used for language specific symbols.
    This method returns the name of the value format definition.
    This method returns the actual value format pattern that should be used by the value format.
    This method returns the data type the value format was defined for.
  • Method Details

    • getName

      String getName()
      This method returns the name of the value format definition. If this name is equal to a value format defined in Studio, this value format definition will replace the definition from studio.
      Returns:
      The name of the value format definition.
    • getType

      DataType getType()
      This method returns the data type the value format was defined for.
      Returns:
      The data type the value format was defined for.
    • getLanguageCode

      String getLanguageCode()
      This method returns the language code of the language that should be used for language specific symbols. Not all value formats do need language specific symbols, so the language code might be null for certain patterns.
      Returns:
      the language code of the language that should be used for language specific symbols.
    • getPattern

      String getPattern()
      This method returns the actual value format pattern that should be used by the value format.
      Returns:
      the actual value format pattern that should be used by the value format.