Enum Utils.DocComparator.DocKind
- java.lang.Object
-
- java.lang.Enum<Utils.DocComparator.DocKind>
-
- gw.gosudoc.com.sun.tools.doclets.internal.toolkit.util.Utils.DocComparator.DocKind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Utils.DocComparator.DocKind>
- Enclosing class:
- Utils.DocComparator<T extends Doc>
static enum Utils.DocComparator.DocKind extends java.lang.Enum<Utils.DocComparator.DocKind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATIONCLASSCONSTRUCTORENUMFIELDINTERFACEMETHODPACKAGE
-
Constructor Summary
Constructors Modifier Constructor Description privateDocKind()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Utils.DocComparator.DocKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Utils.DocComparator.DocKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PACKAGE
public static final Utils.DocComparator.DocKind PACKAGE
-
CLASS
public static final Utils.DocComparator.DocKind CLASS
-
ENUM
public static final Utils.DocComparator.DocKind ENUM
-
INTERFACE
public static final Utils.DocComparator.DocKind INTERFACE
-
ANNOTATION
public static final Utils.DocComparator.DocKind ANNOTATION
-
FIELD
public static final Utils.DocComparator.DocKind FIELD
-
CONSTRUCTOR
public static final Utils.DocComparator.DocKind CONSTRUCTOR
-
METHOD
public static final Utils.DocComparator.DocKind METHOD
-
-
Method Detail
-
values
public static Utils.DocComparator.DocKind[] 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 (Utils.DocComparator.DocKind c : Utils.DocComparator.DocKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Utils.DocComparator.DocKind valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-