microsoft.exchange.webservices.data
Enum TraceFlags

java.lang.Object
  extended by java.lang.Enum<TraceFlags>
      extended by microsoft.exchange.webservices.data.TraceFlags
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TraceFlags>

public enum TraceFlags
extends java.lang.Enum<TraceFlags>

Defines flags to control tracing details.


Enum Constant Summary
AutodiscoverConfiguration
          The Autodiscover configuration.
AutodiscoverRequest
          The Autodiscover request.
AutodiscoverRequestHttpHeaders
          The Autodiscover Request HttpHeaders
AutodiscoverResponse
          The Autodiscover response.
AutodiscoverResponseHttpHeaders
          The Autodiscover response http headers.
DebugMessage
          The Debug Message.
EwsRequest
          The Ews request.
EwsRequestHttpHeaders
          The Ews Request Http Headers.
EwsResponse
          The Ews response.
EwsResponseHttpHeaders
          The Ews response http headers.
None
          The None.
 
Method Summary
static TraceFlags valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(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 name
java.lang.NullPointerException - if the argument is null