Enum ConfigCategory
- java.lang.Object
-
- java.lang.Enum<ConfigCategory>
-
- org.keycloak.quarkus.runtime.configuration.mappers.ConfigCategory
-
- All Implemented Interfaces:
Serializable,Comparable<ConfigCategory>
public enum ConfigCategory extends Enum<ConfigCategory>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetHeading()intgetOrder()static ConfigCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLUSTERING
public static final ConfigCategory CLUSTERING
-
DATABASE
public static final ConfigCategory DATABASE
-
FEATURE
public static final ConfigCategory FEATURE
-
HOSTNAME
public static final ConfigCategory HOSTNAME
-
HTTP
public static final ConfigCategory HTTP
-
METRICS
public static final ConfigCategory METRICS
-
PROXY
public static final ConfigCategory PROXY
-
VAULT
public static final ConfigCategory VAULT
-
GENERAL
public static final ConfigCategory GENERAL
-
-
Method Detail
-
values
public static ConfigCategory[] 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 (ConfigCategory c : ConfigCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigCategory 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()
-
-