Enum JDUProcessor

    • 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)
      • 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
    • 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 name
        java.lang.NullPointerException - if the argument is null
      • valueOfOPT

        public static JDUProcessor valueOfOPT​(java.lang.String s)
        An identical method to the synthetically-generated method valueOf(String) - except this method returns null when no match has occureed, rather than throwing an IllegalArgumentException.
        Parameters:
        s - This may be any String. If this String 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);