Enum Class ServerHttpObservationDocumentation.LowCardinalityKeyNames
java.lang.Object
java.lang.Enum<ServerHttpObservationDocumentation.LowCardinalityKeyNames>
org.springframework.http.server.observation.ServerHttpObservationDocumentation.LowCardinalityKeyNames
- All Implemented Interfaces:
- io.micrometer.common.docs.KeyName,- Serializable,- Comparable<ServerHttpObservationDocumentation.LowCardinalityKeyNames>,- Constable
- Enclosing class:
- ServerHttpObservationDocumentation
public static enum ServerHttpObservationDocumentation.LowCardinalityKeyNames
extends Enum<ServerHttpObservationDocumentation.LowCardinalityKeyNames>
implements io.micrometer.common.docs.KeyName
- Since:
- 6.0
- Author:
- Brian Clozel
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionName of the exception thrown during the exchange, or "none" if no exception was thrown.Name of the HTTP request method or "none" if the request was not received properly.Outcome of the HTTP server exchange.HTTP response raw status code, or"UNKNOWN"if no response was created.URI pattern for the matching handler if available, falling back toREDIRECTIONfor 3xx responses,NOT_FOUNDfor 404 responses,rootfor requests with no path info, andUNKNOWNfor all other requests.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface io.micrometer.common.docs.KeyNameasString, isRequired, withNoneValue, withValue, withValue
- 
Enum Constant Details- 
METHODName of the HTTP request method or "none" if the request was not received properly.
- 
STATUSHTTP response raw status code, or"UNKNOWN"if no response was created.
- 
URIURI pattern for the matching handler if available, falling back toREDIRECTIONfor 3xx responses,NOT_FOUNDfor 404 responses,rootfor requests with no path info, andUNKNOWNfor all other requests.
- 
EXCEPTIONName of the exception thrown during the exchange, or "none" if no exception was thrown.
- 
OUTCOMEOutcome of the HTTP server exchange.- See Also:
 
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-