gnu.java.nio
Class VMChannel.Kind

java.lang.Object
  extended by gnu.java.nio.VMChannel.Kind
Enclosing class:
VMChannel

static class VMChannel.Kind
extends Object

An enumeration of possible kinds of channel.


Field Summary
(package private) static VMChannel.Kind FILE
          A file.
(package private) static VMChannel.Kind OTHER
          Something else; not a socket or file.
(package private) static VMChannel.Kind SOCK_DGRAM
          A datagram (UDP) socket.
(package private) static VMChannel.Kind SOCK_STREAM
          A streaming (TCP) socket.
 
Constructor Summary
private VMChannel.Kind()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SOCK_STREAM

static final VMChannel.Kind SOCK_STREAM
A streaming (TCP) socket.


SOCK_DGRAM

static final VMChannel.Kind SOCK_DGRAM
A datagram (UDP) socket.


FILE

static final VMChannel.Kind FILE
A file.


OTHER

static final VMChannel.Kind OTHER
Something else; not a socket or file.

Constructor Detail

VMChannel.Kind

private VMChannel.Kind()