Package com.opencloud.rhino.persistence
Enum PersistenceInstanceType
- java.lang.Object
-
- java.lang.Enum<PersistenceInstanceType>
-
- com.opencloud.rhino.persistence.PersistenceInstanceType
-
- All Implemented Interfaces:
Serializable
,Comparable<PersistenceInstanceType>
public enum PersistenceInstanceType extends Enum<PersistenceInstanceType>
Supported persistence instance types.
- Since:
- Rhino 2.6.1
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PersistenceInstanceType
fromString(String s)
Get the enum constant of this type with the specified name, case insensitive.static PersistenceInstanceType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PersistenceInstanceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JDBC
public static final PersistenceInstanceType JDBC
-
CASSANDRA
public static final PersistenceInstanceType CASSANDRA
-
-
Method Detail
-
values
public static PersistenceInstanceType[] 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 (PersistenceInstanceType c : PersistenceInstanceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PersistenceInstanceType 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
-
fromString
public static PersistenceInstanceType fromString(String s)
Get the enum constant of this type with the specified name, case insensitive.
- Parameters:
s
- the name.- Returns:
- the enum constant with the specified name.
- Throws:
IllegalArgumentException
- if there is no enum with the specified name.
-
-