org.apache.abdera.protocol.client.util
Enum MethodHelper.HopByHop

java.lang.Object
  extended by java.lang.Enum<MethodHelper.HopByHop>
      extended by org.apache.abdera.protocol.client.util.MethodHelper.HopByHop
All Implemented Interfaces:
Serializable, Comparable<MethodHelper.HopByHop>
Enclosing class:
MethodHelper

public static enum MethodHelper.HopByHop
extends Enum<MethodHelper.HopByHop>


Enum Constant Summary
Connection
           
KeepAlive
           
ProxyAuthenticate
           
ProxyAuthorization
           
TE
           
Trailers
           
TransferEncoding
           
Upgrade
           
 
Method Summary
static MethodHelper.HopByHop valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MethodHelper.HopByHop[] 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

Connection

public static final MethodHelper.HopByHop Connection

KeepAlive

public static final MethodHelper.HopByHop KeepAlive

ProxyAuthenticate

public static final MethodHelper.HopByHop ProxyAuthenticate

ProxyAuthorization

public static final MethodHelper.HopByHop ProxyAuthorization

TE

public static final MethodHelper.HopByHop TE

Trailers

public static final MethodHelper.HopByHop Trailers

TransferEncoding

public static final MethodHelper.HopByHop TransferEncoding

Upgrade

public static final MethodHelper.HopByHop Upgrade
Method Detail

values

public static MethodHelper.HopByHop[] 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 (MethodHelper.HopByHop c : MethodHelper.HopByHop.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MethodHelper.HopByHop 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 name
NullPointerException - if the argument is null


Copyright © 2006-2010 Apache Software Foundation. All Rights Reserved.