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 Summary
Enum Constants Enum Constant Description EXPOSED_IP_FOR_CLIENT
IPs to be send to clients when information of a registered EE/SL is required.LOGIC_MOD_HOSTNAME
Logic module host environment variable name.LOGIC_MOD_IN_MEMORY
In memory database.LOGIC_MOD_NAME
Logic module name.LOGIC_MOD_TCPPORT
Logic module tcp port environment variable name.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CfgLogicEnvLoader.ConfigLogicProperties
valueOf(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_NAME
public static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_NAME
Logic module name.
-
LOGIC_MOD_TCPPORT
public static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_TCPPORT
Logic module tcp port environment variable name.
-
LOGIC_MOD_HOSTNAME
public static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_HOSTNAME
Logic module host environment variable name.
-
EXPOSED_IP_FOR_CLIENT
public 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_MEMORY
public static final CfgLogicEnvLoader.ConfigLogicProperties LOGIC_MOD_IN_MEMORY
In memory database.
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-