Enum RESTEasyMsgTraceEvent

    • Enum Constant Detail

      • RI_BEFORE

        public static final RESTEasyMsgTraceEvent RI_BEFORE
        jakarta.ws.rs.ext.ReaderInterceptor invocation before a call to context.proceed().
      • RI_AFTER

        public static final RESTEasyMsgTraceEvent RI_AFTER
        jakarta.ws.rs.ext.ReaderInterceptor invocation after a call to context.proceed().
      • RI_SUMMARY

        public static final RESTEasyMsgTraceEvent RI_SUMMARY
        jakarta.ws.rs.ext.ReaderInterceptor invocation summary.
      • MBR_FIND

        public static final RESTEasyMsgTraceEvent MBR_FIND
        jakarta.ws.rs.ext.MessageBodyReader lookup.
      • MBR_NOT_READABLE

        public static final RESTEasyMsgTraceEvent MBR_NOT_READABLE
        jakarta.ws.rs.ext.MessageBodyReader#isReadable returned false.
      • MBR_SELECTED

        public static final RESTEasyMsgTraceEvent MBR_SELECTED
        jakarta.ws.rs.ext.MessageBodyReader selected.
      • MBR_SKIPPED

        public static final RESTEasyMsgTraceEvent MBR_SKIPPED
        jakarta.ws.rs.ext.MessageBodyReader skipped as higher-priority reader has been selected already.
      • MBR_READ_FROM

        public static final RESTEasyMsgTraceEvent MBR_READ_FROM
        jakarta.ws.rs.ext.MessageBodyReader#readFrom invoked.
      • MBW_FIND

        public static final RESTEasyMsgTraceEvent MBW_FIND
        jakarta.ws.rs.ext.MessageBodyWriter lookup.
      • MBW_NOT_WRITEABLE

        public static final RESTEasyMsgTraceEvent MBW_NOT_WRITEABLE
        jakarta.ws.rs.ext.MessageBodyWriter#isWriteable returned false.
      • MBW_SELECTED

        public static final RESTEasyMsgTraceEvent MBW_SELECTED
        jakarta.ws.rs.ext.MessageBodyWriter#isWriteable selected.
      • MBW_SKIPPED

        public static final RESTEasyMsgTraceEvent MBW_SKIPPED
        jakarta.ws.rs.ext.MessageBodyWriter skipped as higher-priority writer has been selected already.
      • MBW_WRITE_TO

        public static final RESTEasyMsgTraceEvent MBW_WRITE_TO
        jakarta.ws.rs.ext.MessageBodyWriter#writeTo invoked.
      • WI_BEFORE

        public static final RESTEasyMsgTraceEvent WI_BEFORE
        jakarta.ws.rs.ext.WriterInterceptor invocation before a call to context.proceed().
      • WI_AFTER

        public static final RESTEasyMsgTraceEvent WI_AFTER
        jakarta.ws.rs.ext.WriterInterceptor invocation after a call to context.proceed().
      • WI_SUMMARY

        public static final RESTEasyMsgTraceEvent WI_SUMMARY
        jakarta.ws.rs.ext.ReaderInterceptor invocation summary.
    • Method Detail

      • values

        public static RESTEasyMsgTraceEvent[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (RESTEasyMsgTraceEvent c : RESTEasyMsgTraceEvent.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RESTEasyMsgTraceEvent valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • category

        public String category()
        Description copied from interface: RESTEasyTracingEvent
        Category of event, more events share same category. Is used to format response HTTP header.
        Specified by:
        category in interface RESTEasyTracingEvent
        Returns:
        event category.