Package es.bsc.dataclay.util.configs
Enum CfgDataServiceEnvLoader.ConfigDataServiceProperties
- java.lang.Object
-
- java.lang.Enum<CfgDataServiceEnvLoader.ConfigDataServiceProperties>
-
- es.bsc.dataclay.util.configs.CfgDataServiceEnvLoader.ConfigDataServiceProperties
-
- All Implemented Interfaces:
Serializable
,Comparable<CfgDataServiceEnvLoader.ConfigDataServiceProperties>
- Enclosing class:
- CfgDataServiceEnvLoader
public static enum CfgDataServiceEnvLoader.ConfigDataServiceProperties extends Enum<CfgDataServiceEnvLoader.ConfigDataServiceProperties>
The configurable properties.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DB_PATH
DbHandler path field name.DBHANDLER_TYPE
DbHandler type field name.DS_HOSTNAME
DataService hostname environment variable name.DS_NAME
DataService name environment variable name.DS_PARAVERTAG
DataService paraver tag.DS_TCPPORT
DataService TCP port environment variable name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CfgDataServiceEnvLoader.ConfigDataServiceProperties
getDbhandlerType()
Get thedbhandlerType
void
setDbhandlerType(CfgDataServiceEnvLoader.ConfigDataServiceProperties newdbhandlerType)
Set thedbhandlerType
static CfgDataServiceEnvLoader.ConfigDataServiceProperties
valueOf(String name)
Returns the enum constant of this type with the specified name.static CfgDataServiceEnvLoader.ConfigDataServiceProperties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DS_NAME
public static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_NAME
DataService name environment variable name.
-
DS_HOSTNAME
public static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_HOSTNAME
DataService hostname environment variable name.
-
DS_TCPPORT
public static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_TCPPORT
DataService TCP port environment variable name.
-
DBHANDLER_TYPE
public static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DBHANDLER_TYPE
DbHandler type field name.
-
DB_PATH
public static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DB_PATH
DbHandler path field name.
-
DS_PARAVERTAG
public static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_PARAVERTAG
DataService paraver tag.
-
-
Method Detail
-
values
public static CfgDataServiceEnvLoader.ConfigDataServiceProperties[] 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 (CfgDataServiceEnvLoader.ConfigDataServiceProperties c : CfgDataServiceEnvLoader.ConfigDataServiceProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CfgDataServiceEnvLoader.ConfigDataServiceProperties 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
-
getDbhandlerType
public CfgDataServiceEnvLoader.ConfigDataServiceProperties getDbhandlerType()
Get thedbhandlerType
- Returns:
- the dbhandlerType
-
setDbhandlerType
public void setDbhandlerType(CfgDataServiceEnvLoader.ConfigDataServiceProperties newdbhandlerType)
Set thedbhandlerType
- Parameters:
newdbhandlerType
- the dbhandlerType to set
-
-