com.kenai.constantine.platform
Enum AddressFamily

java.lang.Object
  extended by java.lang.Enum<AddressFamily>
      extended by com.kenai.constantine.platform.AddressFamily
All Implemented Interfaces:
Serializable, Comparable<AddressFamily>, Constant

Deprecated.

@Deprecated
public enum AddressFamily
extends Enum<AddressFamily>
implements Constant


Enum Constant Summary
__UNKNOWN_CONSTANT__
          Deprecated.  
AF_APPLETALK
          Deprecated.  
AF_ATM
          Deprecated.  
AF_AX25
          Deprecated.  
AF_CCITT
          Deprecated.  
AF_CHAOS
          Deprecated.  
AF_CNT
          Deprecated.  
AF_COIP
          Deprecated.  
AF_DATAKIT
          Deprecated.  
AF_DECnet
          Deprecated.  
AF_DLI
          Deprecated.  
AF_E164
          Deprecated.  
AF_ECMA
          Deprecated.  
AF_HYLINK
          Deprecated.  
AF_IMPLINK
          Deprecated.  
AF_INET
          Deprecated.  
AF_INET6
          Deprecated.  
AF_IPX
          Deprecated.  
AF_ISDN
          Deprecated.  
AF_ISO
          Deprecated.  
AF_LAT
          Deprecated.  
AF_LINK
          Deprecated.  
AF_LOCAL
          Deprecated.  
AF_MAX
          Deprecated.  
AF_NATM
          Deprecated.  
AF_NDRV
          Deprecated.  
AF_NETBIOS
          Deprecated.  
AF_NETGRAPH
          Deprecated.  
AF_NS
          Deprecated.  
AF_OSI
          Deprecated.  
AF_PPP
          Deprecated.  
AF_PUP
          Deprecated.  
AF_ROUTE
          Deprecated.  
AF_SIP
          Deprecated.  
AF_SNA
          Deprecated.  
AF_SYSTEM
          Deprecated.  
AF_UNIX
          Deprecated.  
AF_UNSPEC
          Deprecated.  
pseudo_AF_HDRCMPLT
          Deprecated.  
pseudo_AF_KEY
          Deprecated.  
pseudo_AF_PIP
          Deprecated.  
pseudo_AF_RTIP
          Deprecated.  
pseudo_AF_XTP
          Deprecated.  
 
Method Summary
 String description()
          Deprecated.  
 int intValue()
          Deprecated.  
 long longValue()
          Deprecated.  
 String toString()
          Deprecated.  
 int value()
          Deprecated.  
static AddressFamily valueOf(int value)
          Deprecated.  
static AddressFamily valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static AddressFamily[] values()
          Deprecated. 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface jnr.constants.Constant
name
 

Enum Constant Detail

AF_UNSPEC

public static final AddressFamily AF_UNSPEC
Deprecated. 

AF_LOCAL

public static final AddressFamily AF_LOCAL
Deprecated. 

AF_UNIX

public static final AddressFamily AF_UNIX
Deprecated. 

AF_INET

public static final AddressFamily AF_INET
Deprecated. 

AF_IMPLINK

public static final AddressFamily AF_IMPLINK
Deprecated. 

AF_PUP

public static final AddressFamily AF_PUP
Deprecated. 

AF_CHAOS

public static final AddressFamily AF_CHAOS
Deprecated. 

AF_NS

public static final AddressFamily AF_NS
Deprecated. 

AF_ISO

public static final AddressFamily AF_ISO
Deprecated. 

AF_OSI

public static final AddressFamily AF_OSI
Deprecated. 

AF_ECMA

public static final AddressFamily AF_ECMA
Deprecated. 

AF_DATAKIT

public static final AddressFamily AF_DATAKIT
Deprecated. 

AF_CCITT

public static final AddressFamily AF_CCITT
Deprecated. 

AF_SNA

public static final AddressFamily AF_SNA
Deprecated. 

AF_DECnet

public static final AddressFamily AF_DECnet
Deprecated. 

AF_DLI

public static final AddressFamily AF_DLI
Deprecated. 

AF_LAT

public static final AddressFamily AF_LAT
Deprecated. 

AF_HYLINK

public static final AddressFamily AF_HYLINK
Deprecated. 

AF_APPLETALK

public static final AddressFamily AF_APPLETALK
Deprecated. 

AF_ROUTE

public static final AddressFamily AF_ROUTE
Deprecated. 

AF_LINK

public static final AddressFamily AF_LINK
Deprecated. 

pseudo_AF_XTP

public static final AddressFamily pseudo_AF_XTP
Deprecated. 

AF_COIP

public static final AddressFamily AF_COIP
Deprecated. 

AF_CNT

public static final AddressFamily AF_CNT
Deprecated. 

pseudo_AF_RTIP

public static final AddressFamily pseudo_AF_RTIP
Deprecated. 

AF_IPX

public static final AddressFamily AF_IPX
Deprecated. 

AF_SIP

public static final AddressFamily AF_SIP
Deprecated. 

pseudo_AF_PIP

public static final AddressFamily pseudo_AF_PIP
Deprecated. 

AF_NDRV

public static final AddressFamily AF_NDRV
Deprecated. 

AF_ISDN

public static final AddressFamily AF_ISDN
Deprecated. 

AF_E164

public static final AddressFamily AF_E164
Deprecated. 

pseudo_AF_KEY

public static final AddressFamily pseudo_AF_KEY
Deprecated. 

AF_INET6

public static final AddressFamily AF_INET6
Deprecated. 

AF_NATM

public static final AddressFamily AF_NATM
Deprecated. 

AF_SYSTEM

public static final AddressFamily AF_SYSTEM
Deprecated. 

AF_NETBIOS

public static final AddressFamily AF_NETBIOS
Deprecated. 

AF_PPP

public static final AddressFamily AF_PPP
Deprecated. 

AF_ATM

public static final AddressFamily AF_ATM
Deprecated. 

pseudo_AF_HDRCMPLT

public static final AddressFamily pseudo_AF_HDRCMPLT
Deprecated. 

AF_NETGRAPH

public static final AddressFamily AF_NETGRAPH
Deprecated. 

AF_AX25

public static final AddressFamily AF_AX25
Deprecated. 

AF_MAX

public static final AddressFamily AF_MAX
Deprecated. 

__UNKNOWN_CONSTANT__

public static final AddressFamily __UNKNOWN_CONSTANT__
Deprecated. 
Method Detail

values

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

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

valueOf

public static AddressFamily valueOf(String name)
Deprecated. 
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

value

public final int value()
Deprecated. 

intValue

public final int intValue()
Deprecated. 
Specified by:
intValue in interface Constant

longValue

public final long longValue()
Deprecated. 
Specified by:
longValue in interface Constant

description

public final String description()
Deprecated. 

toString

public final String toString()
Deprecated. 
Overrides:
toString in class Enum<AddressFamily>

valueOf

public static final AddressFamily valueOf(int value)
Deprecated. 


Copyright © 2012. All Rights Reserved.