FileDocCategorySizeDatePackage
Void.javaAPI DocAndroid 1.5 API1727Wed May 06 22:41:04 BST 2009java.lang

Void

public final class Void extends Object
Placeholder class for the Java keyword {@code void}.
since
Android 1.0

Fields Summary
public static final Class
TYPE
The {@link Class} object that represents the primitive type {@code void}.
Constructors Summary
private Void()

    
Methods Summary
private static java.lang.ClasslookupType()

        Class<?> voidType = null;
        try {
            Method method = Runnable.class.getMethod("run", new Class[0]); //$NON-NLS-1$
            voidType = method.getReturnType();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        return (Class<Void>) voidType;