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 SummaryEnum Constants Enum Constant Description DB_PATHDbHandler path field name.DBHANDLER_TYPEDbHandler type field name.DS_HOSTNAMEDataService hostname environment variable name.DS_NAMEDataService name environment variable name.DS_PARAVERTAGDataService paraver tag.DS_TCPPORTDataService TCP port environment variable name.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CfgDataServiceEnvLoader.ConfigDataServicePropertiesgetDbhandlerType()Get thedbhandlerTypevoidsetDbhandlerType(CfgDataServiceEnvLoader.ConfigDataServiceProperties newdbhandlerType)Set thedbhandlerTypestatic CfgDataServiceEnvLoader.ConfigDataServicePropertiesvalueOf(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_NAMEpublic static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_NAME DataService name environment variable name.
 - 
DS_HOSTNAMEpublic static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_HOSTNAME DataService hostname environment variable name.
 - 
DS_TCPPORTpublic static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_TCPPORT DataService TCP port environment variable name.
 - 
DBHANDLER_TYPEpublic static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DBHANDLER_TYPE DbHandler type field name.
 - 
DB_PATHpublic static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DB_PATH DbHandler path field name.
 - 
DS_PARAVERTAGpublic static final CfgDataServiceEnvLoader.ConfigDataServiceProperties DS_PARAVERTAG DataService paraver tag.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getDbhandlerTypepublic CfgDataServiceEnvLoader.ConfigDataServiceProperties getDbhandlerType() Get thedbhandlerType- Returns:
- the dbhandlerType
 
 - 
setDbhandlerTypepublic void setDbhandlerType(CfgDataServiceEnvLoader.ConfigDataServiceProperties newdbhandlerType) Set thedbhandlerType- Parameters:
- newdbhandlerType- the dbhandlerType to set
 
 
- 
 
-