Interface Label.TextBindMapping

  • Enclosing class:
    Label

    public static interface Label.TextBindMapping
    Translates between text and context data during data binding.
    • Method Detail

      • toString

        java.lang.String toString​(java.lang.Object value)
        Converts a value from the bind context to a text representation during a Component.load(Object) operation.
        Parameters:
        value - The bound value from the component.
        Returns:
        The value converted to a String suitable for the label text.
      • valueOf

        java.lang.Object valueOf​(java.lang.String text)
        Converts a text string to a value to be stored in the bind context during a Component.store(Object) operation.
        Parameters:
        text - The label text to be converted.
        Returns:
        The text value converted to a value suitable for persistence in the bound object.