java.net
Enum Proxy.Type

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Enum sample code for java.lang.Enum definition code for java.lang.Enum <Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type >
      extended by java.net.Proxy.Type
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable , Comparable sample code for java.lang.Comparable definition code for java.lang.Comparable <Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type >
Enclosing class:
Proxy sample code for java.net.Proxy definition code for java.net.Proxy

public static enum Proxy.Type
extends Enum sample code for java.lang.Enum definition code for java.lang.Enum <Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type >

Represents the proxy type.

Since:
1.5

Enum Constant Summary
DIRECT sample code for java.net.Proxy.Type.DIRECT definition code for java.net.Proxy.Type.DIRECT
          Represents a direct connection, or the absence of a proxy.
HTTP sample code for java.net.Proxy.Type.HTTP definition code for java.net.Proxy.Type.HTTP
          Represents proxy for high level protocols such as HTTP or FTP.
SOCKS sample code for java.net.Proxy.Type.SOCKS definition code for java.net.Proxy.Type.SOCKS
          Represents a SOCKS (V4 or V5) proxy.
 
Method Summary
static Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type valueOf sample code for java.net.Proxy.Type.valueOf(java.lang.String) definition code for java.net.Proxy.Type.valueOf(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  name)
          Returns the enum constant of this type with the specified name.
static Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type [] values sample code for java.net.Proxy.Type.values() definition code for java.net.Proxy.Type.values() ()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum sample code for java.lang.Enum definition code for java.lang.Enum
clone sample code for java.lang.Enum.clone() definition code for java.lang.Enum.clone() , compareTo sample code for java.lang.Enum.compareTo(E) definition code for java.lang.Enum.compareTo(E) , equals sample code for java.lang.Enum.equals(java.lang.Object) definition code for java.lang.Enum.equals(java.lang.Object) , getDeclaringClass sample code for java.lang.Enum.getDeclaringClass() definition code for java.lang.Enum.getDeclaringClass() , hashCode sample code for java.lang.Enum.hashCode() definition code for java.lang.Enum.hashCode() , name sample code for java.lang.Enum.name() definition code for java.lang.Enum.name() , ordinal sample code for java.lang.Enum.ordinal() definition code for java.lang.Enum.ordinal() , toString sample code for java.lang.Enum.toString() definition code for java.lang.Enum.toString() , valueOf sample code for java.lang.Enum.valueOf(java.lang.Class, java.lang.String) definition code for java.lang.Enum.valueOf(java.lang.Class, java.lang.String)
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Enum Constant Detail

DIRECT

public static final Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type  DIRECT
Represents a direct connection, or the absence of a proxy.


HTTP

public static final Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type  HTTP
Represents proxy for high level protocols such as HTTP or FTP.


SOCKS

public static final Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type  SOCKS
Represents a SOCKS (V4 or V5) proxy.

Method Detail

values sample code for java.net.Proxy.Type.values() definition code for java.net.Proxy.Type.values()

public static final Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type [] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Proxy.Type c : Proxy.Type.values())
        System.out.println(c);

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

valueOf sample code for java.net.Proxy.Type.valueOf(java.lang.String) definition code for java.net.Proxy.Type.valueOf(java.lang.String)

public static Proxy.Type sample code for java.net.Proxy.Type definition code for java.net.Proxy.Type  valueOf(String sample code for java.lang.String definition code for 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:
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if this enum type has no constant with the specified name