Package es.bsc.dataclay.util.configs
Enum CfgLogicEnvLoader.ConfigLogicProperties
- java.lang.Object
- 
- java.lang.Enum<CfgLogicEnvLoader.ConfigLogicProperties>
- 
- es.bsc.dataclay.util.configs.CfgLogicEnvLoader.ConfigLogicProperties
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CfgLogicEnvLoader.ConfigLogicProperties>
 - Enclosing class:
- CfgLogicEnvLoader
 
 public static enum CfgLogicEnvLoader.ConfigLogicProperties extends Enum<CfgLogicEnvLoader.ConfigLogicProperties> The configurable properties.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description EXPOSED_IP_FOR_CLIENTIPs to be send to clients when information of a registered EE/SL is required.LOGIC_MOD_HOSTNAMELogic module host environment variable name.LOGIC_MOD_IN_MEMORYIn memory database.LOGIC_MOD_NAMELogic module name.LOGIC_MOD_TCPPORTLogic module tcp port environment variable name.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CfgLogicEnvLoader.ConfigLogicPropertiesvalueOf(String name)Returns the enum constant of this type with the specified name.static CfgLogicEnvLoader.ConfigLogicProperties[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LOGIC_MOD_NAMEpublic static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_NAME Logic module name.
 - 
LOGIC_MOD_TCPPORTpublic static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_TCPPORT Logic module tcp port environment variable name.
 - 
LOGIC_MOD_HOSTNAMEpublic static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_HOSTNAME Logic module host environment variable name.
 - 
EXPOSED_IP_FOR_CLIENTpublic static final CfgLogicEnvLoader.ConfigLogicProperties EXPOSED_IP_FOR_CLIENT IPs to be send to clients when information of a registered EE/SL is required. Can be null.
 - 
LOGIC_MOD_IN_MEMORYpublic static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_IN_MEMORY In memory database.
 
- 
 - 
Method Detail- 
valuespublic static CfgLogicEnvLoader.ConfigLogicProperties[] 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 (CfgLogicEnvLoader.ConfigLogicProperties c : CfgLogicEnvLoader.ConfigLogicProperties.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CfgLogicEnvLoader.ConfigLogicProperties 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
 
 
- 
 
-