Enum ToolOption
- java.lang.Object
-
- java.lang.Enum<ToolOption>
-
- gw.gosudoc.com.sun.tools.javadoc.main.ToolOption
-
- All Implemented Interfaces:
Serializable
,Comparable<ToolOption>
@Deprecated public enum ToolOption extends Enum<ToolOption>
Deprecated.javadoc tool options.This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_EXPORTS
Deprecated.ADD_MODULES
Deprecated.ADD_READS
Deprecated.BOOTCLASSPATH
Deprecated.BREAKITERATOR
Deprecated.CLASS_PATH
Deprecated.CLASSPATH
Deprecated.CP
Deprecated.DOCLET
Deprecated.DOCLETPATH
Deprecated.ENCODING
Deprecated.EXCLUDE
Deprecated.EXTDIRS
Deprecated.HELP
Deprecated.LIMIT_MODULES
Deprecated.LOCALE
Deprecated.MODULE_PATH
Deprecated.MODULE_SOURCE_PATH
Deprecated.OVERVIEW
Deprecated.P
Deprecated.PACKAGE
Deprecated.PATCH_MODULE
Deprecated.PRIVATE
Deprecated.PROMPT
Deprecated.PROTECTED
Deprecated.PUBLIC
Deprecated.QUIET
Deprecated.RELEASE
Deprecated.SOURCE
Deprecated.SOURCE_PATH
Deprecated.SOURCEPATH
Deprecated.SUBPACKAGES
Deprecated.SYSCLASSPATH
Deprecated.SYSTEM_
Deprecated.UPGRADE_MODULE_PATH
Deprecated.VERBOSE
Deprecated.X
Deprecated.XCLASSES
Deprecated.XMAXERRS
Deprecated.XMAXWARNS
Deprecated.XWERROR
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ToolOption
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static ToolOption[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOTCLASSPATH
public static final ToolOption BOOTCLASSPATH
Deprecated.
-
CLASSPATH
public static final ToolOption CLASSPATH
Deprecated.
-
CP
public static final ToolOption CP
Deprecated.
-
CLASS_PATH
public static final ToolOption CLASS_PATH
Deprecated.
-
EXTDIRS
public static final ToolOption EXTDIRS
Deprecated.
-
SOURCEPATH
public static final ToolOption SOURCEPATH
Deprecated.
-
SOURCE_PATH
public static final ToolOption SOURCE_PATH
Deprecated.
-
SYSCLASSPATH
public static final ToolOption SYSCLASSPATH
Deprecated.
-
MODULE_SOURCE_PATH
public static final ToolOption MODULE_SOURCE_PATH
Deprecated.
-
UPGRADE_MODULE_PATH
public static final ToolOption UPGRADE_MODULE_PATH
Deprecated.
-
SYSTEM_
public static final ToolOption SYSTEM_
Deprecated.
-
MODULE_PATH
public static final ToolOption MODULE_PATH
Deprecated.
-
P
public static final ToolOption P
Deprecated.
-
ADD_MODULES
public static final ToolOption ADD_MODULES
Deprecated.
-
LIMIT_MODULES
public static final ToolOption LIMIT_MODULES
Deprecated.
-
ENCODING
public static final ToolOption ENCODING
Deprecated.
-
RELEASE
public static final ToolOption RELEASE
Deprecated.
-
SOURCE
public static final ToolOption SOURCE
Deprecated.
-
XMAXERRS
public static final ToolOption XMAXERRS
Deprecated.
-
XMAXWARNS
public static final ToolOption XMAXWARNS
Deprecated.
-
ADD_READS
public static final ToolOption ADD_READS
Deprecated.
-
ADD_EXPORTS
public static final ToolOption ADD_EXPORTS
Deprecated.
-
PATCH_MODULE
public static final ToolOption PATCH_MODULE
Deprecated.
-
DOCLET
public static final ToolOption DOCLET
Deprecated.
-
DOCLETPATH
public static final ToolOption DOCLETPATH
Deprecated.
-
SUBPACKAGES
public static final ToolOption SUBPACKAGES
Deprecated.
-
EXCLUDE
public static final ToolOption EXCLUDE
Deprecated.
-
PACKAGE
public static final ToolOption PACKAGE
Deprecated.
-
PRIVATE
public static final ToolOption PRIVATE
Deprecated.
-
PROTECTED
public static final ToolOption PROTECTED
Deprecated.
-
PUBLIC
public static final ToolOption PUBLIC
Deprecated.
-
PROMPT
public static final ToolOption PROMPT
Deprecated.
-
QUIET
public static final ToolOption QUIET
Deprecated.
-
VERBOSE
public static final ToolOption VERBOSE
Deprecated.
-
XWERROR
public static final ToolOption XWERROR
Deprecated.
-
BREAKITERATOR
public static final ToolOption BREAKITERATOR
Deprecated.
-
LOCALE
public static final ToolOption LOCALE
Deprecated.
-
OVERVIEW
public static final ToolOption OVERVIEW
Deprecated.
-
XCLASSES
public static final ToolOption XCLASSES
Deprecated.
-
HELP
public static final ToolOption HELP
Deprecated.
-
X
public static final ToolOption X
Deprecated.
-
-
Field Detail
-
opt
public final String opt
Deprecated.
-
hasArg
public final boolean hasArg
Deprecated.
-
-
Method Detail
-
values
public static ToolOption[] values()
Deprecated.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 (ToolOption c : ToolOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ToolOption valueOf(String name)
Deprecated.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 nameNullPointerException
- if the argument is null
-
-