Enum Class MsgTraceEvent
- All Implemented Interfaces:
Serializable,Comparable<MsgTraceEvent>,java.lang.constant.Constable,TracingLogger.Event
Common tracing events.
- Since:
- 2.3
- Author:
- Libor Kramolis
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMessageBodyReaderlookup.MessageBodyReaderselected.MessageBodyReaderskipped as higher-priority reader has been selected already.MessageBodyWriterlookup.MessageBodyWriterskipped as higher-priority writer has been selected already.ReaderInterceptorinvocation after a call tocontext.proceed().ReaderInterceptorinvocation before a call tocontext.proceed().ReaderInterceptorinvocation summary.WriterInterceptorinvocation after a call tocontext.proceed().WriterInterceptorinvocation before a call tocontext.proceed().ReaderInterceptorinvocation summary. -
Method Summary
Modifier and TypeMethodDescriptioncategory()Category of event, more events share same category.level()Level of event.Message format.static MsgTraceEventReturns the enum constant of this class with the specified name.static MsgTraceEvent[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface org.glassfish.jersey.message.internal.TracingLogger.Event
name
-
Enum Constant Details
-
RI_BEFORE
ReaderInterceptorinvocation before a call tocontext.proceed(). -
RI_AFTER
ReaderInterceptorinvocation after a call tocontext.proceed(). -
RI_SUMMARY
ReaderInterceptorinvocation summary. -
MBR_FIND
MessageBodyReaderlookup. -
MBR_NOT_READABLE
-
MBR_SELECTED
MessageBodyReaderselected. -
MBR_SKIPPED
MessageBodyReaderskipped as higher-priority reader has been selected already. -
MBR_READ_FROM
-
MBW_FIND
MessageBodyWriterlookup. -
MBW_NOT_WRITEABLE
-
MBW_SELECTED
-
MBW_SKIPPED
MessageBodyWriterskipped as higher-priority writer has been selected already. -
MBW_WRITE_TO
-
WI_BEFORE
WriterInterceptorinvocation before a call tocontext.proceed(). -
WI_AFTER
WriterInterceptorinvocation after a call tocontext.proceed(). -
WI_SUMMARY
ReaderInterceptorinvocation summary.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
category
Description copied from interface:TracingLogger.EventCategory of event, more events share same category. Is used to format response HTTP header.- Specified by:
categoryin interfaceTracingLogger.Event- Returns:
- event category.
-
level
Description copied from interface:TracingLogger.EventLevel of event. Is used to check if the event is logged according to application/request settings.- Specified by:
levelin interfaceTracingLogger.Event- Returns:
- event trace level.
-
messageFormat
Description copied from interface:TracingLogger.EventMessage format. UseString.format(String, Object...)format. Can be null. In that case message arguments are separated by space.- Specified by:
messageFormatin interfaceTracingLogger.Event- Returns:
- message format
-