Enum HttpClientConfig.LoggingConfig.LoggingLevel
- java.lang.Object
-
- java.lang.Enum<HttpClientConfig.LoggingConfig.LoggingLevel>
-
- com.netflix.spinnaker.kork.plugins.api.httpclient.HttpClientConfig.LoggingConfig.LoggingLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<HttpClientConfig.LoggingConfig.LoggingLevel>
- Enclosing class:
- HttpClientConfig.LoggingConfig
public static enum HttpClientConfig.LoggingConfig.LoggingLevel extends java.lang.Enum<HttpClientConfig.LoggingConfig.LoggingLevel>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HttpClientConfig.LoggingConfig.LoggingLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HttpClientConfig.LoggingConfig.LoggingLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final HttpClientConfig.LoggingConfig.LoggingLevel NONE
-
BASIC
public static final HttpClientConfig.LoggingConfig.LoggingLevel BASIC
-
HEADERS
public static final HttpClientConfig.LoggingConfig.LoggingLevel HEADERS
-
BODY
public static final HttpClientConfig.LoggingConfig.LoggingLevel BODY
-
-
Method Detail
-
values
public static HttpClientConfig.LoggingConfig.LoggingLevel[] 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 (HttpClientConfig.LoggingConfig.LoggingLevel c : HttpClientConfig.LoggingConfig.LoggingLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpClientConfig.LoggingConfig.LoggingLevel valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-