Package | Description |
---|---|
java.lang |
Provides classes that are fundamental to the design of the Java
programming language.
|
java.nio.channels |
Defines channels, which represent connections to entities that are capable of
performing I/O operations, such as files and sockets; defines selectors, for
multiplexed, non-blocking I/O operations.
|
java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
javax.management.openmbean |
Provides the open data types and Open MBean descriptor classes.
|
Modifier and Type | Field and Description |
---|---|
static Class<Void> |
Void.TYPE
The
Class object representing the pseudo-type corresponding to
the keyword void . |
Modifier and Type | Method and Description |
---|---|
abstract Future<Void> |
AsynchronousSocketChannel.connect(SocketAddress remote)
Connects this channel.
|
Modifier and Type | Method and Description |
---|---|
abstract <A> void |
AsynchronousSocketChannel.connect(SocketAddress remote,
A attachment,
CompletionHandler<Void,? super A> handler)
Connects this channel.
|
Modifier and Type | Method and Description |
---|---|
Void |
RecursiveAction.getRawResult()
Always returns
null . |
Modifier and Type | Method and Description |
---|---|
protected void |
RecursiveAction.setRawResult(Void mustBeNull)
Requires null completion value.
|
Modifier and Type | Field and Description |
---|---|
static SimpleType<Void> |
SimpleType.VOID
The
SimpleType instance describing values whose
Java class name is java.lang.Void . |
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.