| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<StandardLocation>
javax.tools.StandardLocation
public enum StandardLocation
Standard locations of file objects.
| Enum Constant Summary | |
|---|---|
| ANNOTATION_PROCESSOR_PATHLocation to search for annotation processors. | |
| CLASS_OUTPUTLocation of new class files. | |
| CLASS_PATHLocation to search for user class files. | |
| PLATFORM_CLASS_PATHLocation to search for platform classes. | |
| SOURCE_OUTPUTLocation of new source files. | |
| SOURCE_PATHLocation to search for existing source files. | |
| Method Summary | |
|---|---|
|  String | getName()Gets the name of this location. | 
|  boolean | isOutputLocation()Determines if this is an output location. | 
| static JavaFileManager.Location | locationFor(String name)Gets a location object with the given name. | 
| static StandardLocation | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static StandardLocation[] | values()Returns an array containing the constants of this enum type, in the order they are declared. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final StandardLocation CLASS_OUTPUT
public static final StandardLocation SOURCE_OUTPUT
public static final StandardLocation CLASS_PATH
public static final StandardLocation SOURCE_PATH
public static final StandardLocation ANNOTATION_PROCESSOR_PATH
public static final StandardLocation PLATFORM_CLASS_PATH
| Method Detail | 
|---|
public static StandardLocation[] values()
for (StandardLocation c : StandardLocation.values()) System.out.println(c);
public static StandardLocation valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic static JavaFileManager.Location locationFor(String name)
locationFor(x) ==
 locationFor(y) if and only if x.equals(y).
 The returned location will be an output location if and only if
 name ends with "_OUTPUT".
name - a name
public String getName()
JavaFileManager.Location
getName in interface JavaFileManager.Locationpublic boolean isOutputLocation()
JavaFileManager.Location
isOutputLocation in interface JavaFileManager.Location| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
Copyright © 1993, 2010, Oracle and/or its affiliates. All rights reserved.