Interface TaggedValue<Rep>


  • public interface TaggedValue<Rep>
    Represents a transit tag and value. Returned by default when a reader encounters a tag for which there is no registered ReadHandler. Can also be used in a custom WriteHandler implementation to force representation to use a transit ground type using a rep for which there is no registered handler (e.g., an iterable for the representation of an array).
    • Method Detail

      • getTag

        String getTag()
        Gets the tag
        Returns:
        tag
      • getRep

        Rep getRep()
        Gets the representation of the value
        Returns:
        rep