Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8144631

No documentation is created for methods of enum constants' class bodies

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8, 9
    • tools
    • None

      package com.example;

      /**
       * An enumeration of characters.
       */
      public enum Character {

          RICK {
              /**
               * Returns {@code true} as Rick is a great scientist!
               *
               * @return {@code true}
               */
              @Override
              public boolean isScientist() { return true; }
          },

          MORTY {
              /**
               * Returns {@code false} as Morty is not a scientist.
               *
               * @return {@code false}
               */
              @Override
              public boolean isScientist() { return false; }
          };

          /**
           * Tells whether the person is a scientist.
           *
           * @return {@code true} is the person is a scientist, {@code false}
           * otherwise
           */
          public abstract boolean isScientist();
      }

            Unassigned Unassigned
            prappo Pavel Rappo (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated: