Package io.dialob.settings
Enum DialobSettings.DatabaseType
- java.lang.Object
-
- java.lang.Enum<DialobSettings.DatabaseType>
-
- io.dialob.settings.DialobSettings.DatabaseType
-
- All Implemented Interfaces:
Serializable,Comparable<DialobSettings.DatabaseType>
- Enclosing class:
- DialobSettings
public static enum DialobSettings.DatabaseType extends Enum<DialobSettings.DatabaseType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DialobSettings.DatabaseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DialobSettings.DatabaseType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DialobSettings.DatabaseType NONE
-
COUCHDB
public static final DialobSettings.DatabaseType COUCHDB
-
MONGODB
public static final DialobSettings.DatabaseType MONGODB
-
FILEDB
public static final DialobSettings.DatabaseType FILEDB
-
DIALOBAPIDB
public static final DialobSettings.DatabaseType DIALOBAPIDB
-
JDBC
public static final DialobSettings.DatabaseType JDBC
-
ASSETS
public static final DialobSettings.DatabaseType ASSETS
-
S3
public static final DialobSettings.DatabaseType S3
-
-
Method Detail
-
values
public static DialobSettings.DatabaseType[] 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 (DialobSettings.DatabaseType c : DialobSettings.DatabaseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DialobSettings.DatabaseType 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
-
-