Interface IDomainValue

All Superinterfaces:
Serializable
All Known Implementing Classes:
DomainValue

public interface IDomainValue extends Serializable
This interface is used for the values that are allowed for a field (domain).
Since:
6.4
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the presentation styles of this domain value.
    This method returns the actual value may be used in the field.
    boolean
    This method returns a boolean indicating if the value is currently allowed by the field.
  • Method Details

    • isCurrentlyValid

      boolean isCurrentlyValid()
      This method returns a boolean indicating if the value is currently allowed by the field.
      Returns:
      a boolean indicating if the value is currently allowed by the field.
    • getValue

      IPrimitiveValue getValue()
      This method returns the actual value may be used in the field.
      Returns:
      the actual value may be used in the field.
    • getPresentationStyles

      PresentationStyle[] getPresentationStyles()
      Returns the presentation styles of this domain value. If this value does not have any presentation styles, an empty array is returned.
      Returns:
      the presentations styles of this domain value, never null.