Package org.keycloak.common
Enum 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>
 - Enclosing class:
- Profile.Feature
 
 public static enum Profile.Feature.Type extends Enum<Profile.Feature.Type> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DEFAULTDEPRECATEDDISABLED_BY_DEFAULTEXPERIMENTALPREVIEWPREVIEW_DISABLED_BY_DEFAULT
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()static Profile.Feature.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Profile.Feature.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DEFAULTpublic static final Profile.Feature.Type DEFAULT 
 - 
DISABLED_BY_DEFAULTpublic static final Profile.Feature.Type DISABLED_BY_DEFAULT 
 - 
PREVIEWpublic static final Profile.Feature.Type PREVIEW 
 - 
PREVIEW_DISABLED_BY_DEFAULTpublic static final Profile.Feature.Type PREVIEW_DISABLED_BY_DEFAULT 
 - 
EXPERIMENTALpublic static final Profile.Feature.Type EXPERIMENTAL 
 - 
DEPRECATEDpublic static final Profile.Feature.Type DEPRECATED 
 
- 
 - 
Method Detail- 
valuespublic static Profile.Feature.Type[] 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 (Profile.Feature.Type c : Profile.Feature.Type.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Profile.Feature.Type valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getLabelpublic String getLabel() 
 
- 
 
-