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

Modify return type of public API StyleConverter.getEnumConverter()

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Approved
    • Icon: P4 P4
    • jfx11
    • javafx
    • None
    • source, binary
    • low
    • Very slight risk of source compatibility issues in unusual cases if a subclass of StyleConverter were to hide the getStyleConverter method.
    • Java API

      Summary

      To modify return type of public API StyleConverter.getEnumConverter()

      Problem

      StyleConverter.getEnumConverter() returns an instance of converting in "StyleConverter<String,? extends Enum>" type, whereas constructor of CssMetaData expects "StyleConverter<?, V>" where V is the type of the enum.

      This forces the developer to cast the converter returned from StyleConverter.getEnumConverter() method. without cast code gives compile time error.

      Solution

      To change the return type of StyleConverter.getEnumConverter() from StyleConverter<String, ? extends Enum<?>> to StyleConverter<String, E>.

      Specification

      /**
       * Return a {@code StyleConverter} that converts a String representation
       * of an {@code Enum} to an {@code Enum}.
       * @param <E> the type of the {@code Enum}
       * @param enumClass the enum Class
       * @return A {@code StyleConverter} that converts a String representation
       * of an {@code Enum} to an {@code Enum}
       * @see Enum#valueOf(java.lang.Class, java.lang.String)
       */
      public static <E extends Enum<E>> StyleConverter<String, E> getEnumConverter(Class<E> enumClass) { }

            pkbalakr Prem Balakrishnan (Inactive)
            webbuggrp Webbug Group
            Kevin Rushforth
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: