Package org.keycloak.config
Enum OptionCategory
- java.lang.Object
-
- java.lang.Enum<OptionCategory>
-
- org.keycloak.config.OptionCategory
-
- All Implemented Interfaces:
Serializable,Comparable<OptionCategory>
public enum OptionCategory extends Enum<OptionCategory>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetHeading()intgetOrder()ConfigSupportLevelgetSupportLevel()static OptionCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static OptionCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CACHE
public static final OptionCategory CACHE
-
STORAGE
public static final OptionCategory STORAGE
-
DATABASE
public static final OptionCategory DATABASE
-
TRANSACTION
public static final OptionCategory TRANSACTION
-
FEATURE
public static final OptionCategory FEATURE
-
HOSTNAME
public static final OptionCategory HOSTNAME
-
HTTP
public static final OptionCategory HTTP
-
HEALTH
public static final OptionCategory HEALTH
-
METRICS
public static final OptionCategory METRICS
-
PROXY
public static final OptionCategory PROXY
-
VAULT
public static final OptionCategory VAULT
-
LOGGING
public static final OptionCategory LOGGING
-
SECURITY
public static final OptionCategory SECURITY
-
GENERAL
public static final OptionCategory GENERAL
-
-
Method Detail
-
values
public static OptionCategory[] 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 (OptionCategory c : OptionCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OptionCategory 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 nameNullPointerException- if the argument is null
-
getHeading
public String getHeading()
-
getOrder
public int getOrder()
-
getSupportLevel
public ConfigSupportLevel getSupportLevel()
-
-