Package Summary  Overview Summary

class:DocumentationTool.Location [CHANGED]

field:DOCUMENTATION_OUTPUT [NONE]

field:DOCLET_PATH [NONE]

field:TAGLET_PATH [NONE]

method:values() [NONE]

  • values

    public static DocumentationTool.Location[] values()
    Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
    for (DocumentationTool.Location c : DocumentationTool.Location.values())
        System.out.println(c);
    
    Returns:
    an array containing the constants of this enum type, in the order they are declared

method:valueOf(java.lang.String) [NONE]

  • valueOf

    public static DocumentationTool.Location valueOf​(String name)
    Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
    Parameters:
    name - the name of the enum constant to be returned.
    Returns:
    the enum constant with the specified name
    Throws:
    IllegalArgumentException - if this enum type has no constant with the specified name
    NullPointerException - if the argument is null

method:getName() [NONE]

method:isOutputLocation() [NONE]

  • isOutputLocation

    public boolean isOutputLocation()
    Description copied from interface: JavaFileManager.Location
    Determines if this is an output location. An output location is a location that is conventionally used for output.
    Specified by:
    isOutputLocation in interface JavaFileManager.Location
    Returns:
    true if this is an output location, false otherwise

© 2019 Oracle Corporation and/or its affiliates