Package org.keycloak.config
Enum StorageOptions.StorageType
- java.lang.Object
-
- java.lang.Enum<StorageOptions.StorageType>
-
- org.keycloak.config.StorageOptions.StorageType
-
- All Implemented Interfaces:
Serializable,Comparable<StorageOptions.StorageType>
- Enclosing class:
- StorageOptions
public static enum StorageOptions.StorageType extends Enum<StorageOptions.StorageType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetProvider()static StorageOptions.StorageTypevalueOf(String name)Returns the enum constant of this type with the specified name.static StorageOptions.StorageType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
jpa
public static final StorageOptions.StorageType jpa
-
chm
public static final StorageOptions.StorageType chm
-
hotrod
public static final StorageOptions.StorageType hotrod
-
-
Method Detail
-
values
public static StorageOptions.StorageType[] 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 (StorageOptions.StorageType c : StorageOptions.StorageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StorageOptions.StorageType 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
-
getProvider
public String getProvider()
-
-