public static final enum

Proxy.Type

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ java.net.Proxy.Type

Class Overview

Represents the proxy type.

Summary

Enum Values
Proxy.Type  DIRECT  Represents a direct connection, or the absence of a proxy. 
Proxy.Type  HTTP  Represents proxy for high level protocols such as HTTP or FTP. 
Proxy.Type  SOCKS  Represents a SOCKS (V4 or V5) proxy. 
Public Methods
static Proxy.Type valueOf(String name)
final static Type[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Proxy.Type DIRECT

Represents a direct connection, or the absence of a proxy.

public static final Proxy.Type HTTP

Represents proxy for high level protocols such as HTTP or FTP.

public static final Proxy.Type SOCKS

Represents a SOCKS (V4 or V5) proxy.

Public Methods

public static Proxy.Type valueOf (String name)

public static final Type[] values ()