Enum Class Profile.Feature.Type

java.lang.Object
java.lang.Enum<Profile.Feature.Type>
org.keycloak.common.Profile.Feature.Type
All Implemented Interfaces:
Serializable, Comparable<Profile.Feature.Type>, Constable
Enclosing class:
Profile.Feature

public static enum Profile.Feature.Type extends Enum<Profile.Feature.Type>
  • Enum Constant Details

    • DEFAULT

      public static final Profile.Feature.Type DEFAULT
      Fully supported and enabled by default.
    • DISABLED_BY_DEFAULT

      public static final Profile.Feature.Type DISABLED_BY_DEFAULT
      Fully supported and disabled by default.
    • DEPRECATED

      public static final Profile.Feature.Type DEPRECATED
      Fully supported and will be removed in a future major release.
    • PREVIEW

      public static final Profile.Feature.Type PREVIEW
      Not supported for production yet and not enabled by default. Usually with documentation and feature complete. Soon to be graduated to supported.
    • PREVIEW_DISABLED_BY_DEFAULT

      public static final Profile.Feature.Type PREVIEW_DISABLED_BY_DEFAULT
      Deprecated.
      forRemoval, since 26.5
      Preview features, which are not automatically enabled even with enabled preview profile (Needs to be enabled explicitly). This is no longer used and not explained in the current docs.
    • EXPERIMENTAL

      public static final Profile.Feature.Type EXPERIMENTAL
  • Method Details

    • values

      public static Profile.Feature.Type[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Profile.Feature.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getLabel

      public String getLabel()