Enum TraceFlags
- java.lang.Object
-
- java.lang.Enum<TraceFlags>
-
- microsoft.exchange.webservices.data.core.enumeration.misc.TraceFlags
-
- All Implemented Interfaces:
Serializable,Comparable<TraceFlags>
public enum TraceFlags extends Enum<TraceFlags>
Defines flags to control tracing details.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AutodiscoverConfigurationThe Autodiscover configuration.AutodiscoverRequestThe Autodiscover request.AutodiscoverRequestHttpHeadersThe Autodiscover Request HttpHeadersAutodiscoverResponseThe Autodiscover response.AutodiscoverResponseHttpHeadersThe Autodiscover response http headers.DebugMessageThe Debug Message.EwsRequestThe Ews request.EwsRequestHttpHeadersThe Ews Request Http Headers.EwsResponseThe Ews response.EwsResponseHttpHeadersThe Ews response http headers.NoneThe None.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TraceFlagsvalueOf(String name)Returns the enum constant of this type with the specified name.static TraceFlags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final TraceFlags None
The None.
-
EwsRequest
public static final TraceFlags EwsRequest
The Ews request.
-
EwsResponse
public static final TraceFlags EwsResponse
The Ews response.
-
EwsResponseHttpHeaders
public static final TraceFlags EwsResponseHttpHeaders
The Ews response http headers.
-
AutodiscoverRequest
public static final TraceFlags AutodiscoverRequest
The Autodiscover request.
-
AutodiscoverResponse
public static final TraceFlags AutodiscoverResponse
The Autodiscover response.
-
AutodiscoverResponseHttpHeaders
public static final TraceFlags AutodiscoverResponseHttpHeaders
The Autodiscover response http headers.
-
AutodiscoverConfiguration
public static final TraceFlags AutodiscoverConfiguration
The Autodiscover configuration.
-
DebugMessage
public static final TraceFlags DebugMessage
The Debug Message.
-
EwsRequestHttpHeaders
public static final TraceFlags EwsRequestHttpHeaders
The Ews Request Http Headers.
-
AutodiscoverRequestHttpHeaders
public static final TraceFlags AutodiscoverRequestHttpHeaders
The Autodiscover Request HttpHeaders
-
-
Method Detail
-
values
public static TraceFlags[] 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 (TraceFlags c : TraceFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TraceFlags 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 nameNullPointerException- if the argument is null
-
-