Package Torello.JavaDoc
Enum JDUProcessor
- java.lang.Object
-
- java.lang.Enum<JDUProcessor>
-
- Torello.JavaDoc.JDUProcessor
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JDUProcessor>
public enum JDUProcessor extends java.lang.Enum<JDUProcessor>
Enumeration containing the complete list of Java-Doc Upgrader Processing classes utilized by this Application. This class facilitates better Messager error-printing.
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/JDUProcessor.java
- Open New Browser-Tab: Torello/JavaDoc/JDUProcessor.java
-
-
Enum Constant Summary
Enum Constants Enum Constant AnnotationsMirror
CleanPackageSummaries
CleanSummaries
Convenience
CSSTags
CSSTagsDetails
CSSTagsTopAndSumm
DetailsProcessor
EmbedTag
EmbedTagParameters
ExtraFilesProcessor
HELPER
HiLiteDetails
HiLiteDividers
HiLiteSrcCodeFile
JavaSourceCodeFile
JDAnnotationsProcessor
LinksChecker
MainFilesProcessor
NavButtons
RearrangeEntitySummaries
RearrangePkgFrame
RetrieveEmbedTagMapPropFiles
RetrieveExtraHLSConfigClass
RetrievePkgSortConfigClass
RetrieveSummarySorters
RetrieveUserProcessors
RunUserProcessors
SkewedParameters
StatelessClasses
Stats
UNKNOWN
-
Field Summary
Fields Modifier and Type Field String
explanation
-
Method Summary
Convert String to Enum Constant Modifier and Type Method static JDUProcessor
valueOf(String name)
List all Enum Constants Modifier and Type Method static JDUProcessor[]
values()
More Methods Modifier and Type Method static JDUProcessor
valueOfOPT(String s)
-
-
-
Field Detail
-
explanation
public final java.lang.String explanation
- Code:
- Exact Field Declaration Expression:
public final String explanation;
-
-
Method Detail
-
values
public static JDUProcessor[] 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 (JDUProcessor c : JDUProcessor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JDUProcessor 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
-
valueOfOPT
public static JDUProcessor valueOfOPT(java.lang.String s)
An identical method to the synthetically-generated methodvalueOf(String)
- except this method returns null when no match has occureed, rather than throwing anIllegalArgumentException
.- Parameters:
s
- This may be anyString
. If thisString
is identical to one of the processors that are the enumerated-constants of this class, then that constant will be returned by this method.- Returns:
- The enumerated-constant whose name is an identical match to the
String
-parameter's'
. If no such match exists, then null is returned. - Code:
- Exact Method Body:
return elems.get(s);
-
-