This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.tools
enum JavaFileObject.Kind

java.lang.Object extended by java.lang.Enum extended by javax.tools.JavaFileObject.Kind
All Implemented Interfaces:
Serializable, Comparable

public static final enum JavaFileObject.Kind
extends Enum

Kinds of JavaFileObjects.


Field Summary
static JavaFileObject.Kind CLASS
          Class files for the Java Virtual Machine.
 String extension
          The extension which (by convention) is normally used for this kind of file object.
static JavaFileObject.Kind HTML
          HTML files.
static JavaFileObject.Kind OTHER
          Any other kind.
static JavaFileObject.Kind SOURCE
          Source files written in the Java programming language.
 
Method Summary
static JavaFileObject.Kind

          
static JavaFileObject.Kind[]

          
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CLASS

public static final JavaFileObject.Kind CLASS
Class files for the Java Virtual Machine. For example, regular files ending with {@code .class}.

extension

public final String extension
The extension which (by convention) is normally used for this kind of file object. If no convention exists, the empty string ({@code ""}) is used.

HTML

public static final JavaFileObject.Kind HTML
HTML files. For example, regular files ending with {@code .html}.

OTHER

public static final JavaFileObject.Kind OTHER
Any other kind.

SOURCE

public static final JavaFileObject.Kind SOURCE
Source files written in the Java programming language. For example, regular files ending with {@code .java}.
Method Detail

valueOf

public static JavaFileObject.Kind valueOf(String name)
Parameters:
name

values

public static JavaFileObject.Kind[] values()


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.