Class UnknownDescribedType

  • All Implemented Interfaces:
    DescribedType

    public class UnknownDescribedType
    extends Object
    implements DescribedType
    Generic AMQP Described type wrapper that is used whenever a decode encounters an Described type encoding for which there is no DescribedTypeDecoder registered.
    • Constructor Detail

      • UnknownDescribedType

        public UnknownDescribedType​(Object descriptor,
                                    Object described)
        Creates a new wrapper around the type descriptor and the described value.
        Parameters:
        descriptor - The type descriptor that was used for the encoding of this type.
        described - The value that was encoded into the body of the described type.
    • Method Detail

      • getDescriptor

        public Object getDescriptor()
        Description copied from interface: DescribedType
        Returns the Described Type descriptor that identified this instance.
        Specified by:
        getDescriptor in interface DescribedType
        Returns:
        the descriptor that identifies this instance.
      • getDescribed

        public Object getDescribed()
        Description copied from interface: DescribedType
        Returns the described type value that is carried in this instance.
        Specified by:
        getDescribed in interface DescribedType
        Returns:
        the value carried inside this described instance.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object