Package org.keycloak.common
Enum Class Profile.Feature.Type
- All Implemented Interfaces:
Serializable,Comparable<Profile.Feature.Type>,Constable
- Enclosing class:
- Profile.Feature
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFully supported and enabled by default.Fully supported and will be removed in a future major release.Fully supported and disabled by default.Not supported for production yet and not enabled by default.Deprecated.forRemoval, since 26.5 -
Method Summary
Modifier and TypeMethodDescriptiongetLabel()static Profile.Feature.TypeReturns the enum constant of this class with the specified name.static Profile.Feature.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Fully supported and enabled by default. -
DISABLED_BY_DEFAULT
Fully supported and disabled by default. -
DEPRECATED
Fully supported and will be removed in a future major release. -
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
Deprecated.forRemoval, since 26.5Preview 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
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
getLabel
-