You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
810 B
51 lines
810 B
/*
|
|
* Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* The {@code Void} class is an uninstantiable placeholder class to hold a
|
|
* reference to the {@code Class} object representing the Java keyword
|
|
* void.
|
|
*
|
|
* @author unascribed
|
|
* @since JDK1.1
|
|
*/
|
|
public final
|
|
class Void {
|
|
|
|
/**
|
|
* The {@code Class} object representing the pseudo-type corresponding to
|
|
* the keyword {@code void}.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
public static final Class<Void> TYPE = (Class<Void>) Class.getPrimitiveClass("void");
|
|
|
|
/*
|
|
* The Void class cannot be instantiated.
|
|
*/
|
|
private Void() {}
|
|
}
|