Package org.openbravo.erpCommon.utility
Enum SystemInfo.Item
- java.lang.Object
-
- java.lang.Enum<SystemInfo.Item>
-
- org.openbravo.erpCommon.utility.SystemInfo.Item
-
- All Implemented Interfaces:
Serializable
,Comparable<SystemInfo.Item>
- Enclosing class:
- SystemInfo
public static enum SystemInfo.Item extends Enum<SystemInfo.Item>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLabel()
boolean
isIdInfo()
static SystemInfo.Item
valueOf(String name)
Returns the enum constant of this type with the specified name.static SystemInfo.Item[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYSTEM_IDENTIFIER
public static final SystemInfo.Item SYSTEM_IDENTIFIER
-
MAC_IDENTIFIER
public static final SystemInfo.Item MAC_IDENTIFIER
-
DB_IDENTIFIER
public static final SystemInfo.Item DB_IDENTIFIER
-
OPERATING_SYSTEM
public static final SystemInfo.Item OPERATING_SYSTEM
-
OPERATING_SYSTEM_VERSION
public static final SystemInfo.Item OPERATING_SYSTEM_VERSION
-
DATABASE
public static final SystemInfo.Item DATABASE
-
DATABASE_VERSION
public static final SystemInfo.Item DATABASE_VERSION
-
WEBSERVER
public static final SystemInfo.Item WEBSERVER
-
WEBSERVER_VERSION
public static final SystemInfo.Item WEBSERVER_VERSION
-
SERVLET_CONTAINER
public static final SystemInfo.Item SERVLET_CONTAINER
-
SERVLET_CONTAINER_VERSION
public static final SystemInfo.Item SERVLET_CONTAINER_VERSION
-
ANT_VERSION
public static final SystemInfo.Item ANT_VERSION
-
OB_VERSION
public static final SystemInfo.Item OB_VERSION
-
OB_INSTALL_MODE
public static final SystemInfo.Item OB_INSTALL_MODE
-
NUM_REGISTERED_USERS
public static final SystemInfo.Item NUM_REGISTERED_USERS
-
ISHEARTBEATACTIVE
public static final SystemInfo.Item ISHEARTBEATACTIVE
-
ISPROXYREQUIRED
public static final SystemInfo.Item ISPROXYREQUIRED
-
PROXY_SERVER
public static final SystemInfo.Item PROXY_SERVER
-
PROXY_PORT
public static final SystemInfo.Item PROXY_PORT
-
JAVA_VERSION
public static final SystemInfo.Item JAVA_VERSION
-
MODULES
public static final SystemInfo.Item MODULES
-
OBPS_INSTANCE
public static final SystemInfo.Item OBPS_INSTANCE
-
FIRST_LOGIN
public static final SystemInfo.Item FIRST_LOGIN
-
LAST_LOGIN
public static final SystemInfo.Item LAST_LOGIN
-
TOTAL_LOGINS
public static final SystemInfo.Item TOTAL_LOGINS
-
TOTAL_LOGINS_LAST_MOTH
public static final SystemInfo.Item TOTAL_LOGINS_LAST_MOTH
-
MAX_CONCURRENT_USERS
public static final SystemInfo.Item MAX_CONCURRENT_USERS
-
AVG_CONCURRENT_USERS
public static final SystemInfo.Item AVG_CONCURRENT_USERS
-
PERC_TIME_USAGE
public static final SystemInfo.Item PERC_TIME_USAGE
-
NUMBER_OF_CLIENTS
public static final SystemInfo.Item NUMBER_OF_CLIENTS
-
NUMBER_OF_ORGS
public static final SystemInfo.Item NUMBER_OF_ORGS
-
USAGE_AUDIT
public static final SystemInfo.Item USAGE_AUDIT
-
INSTANCE_PURPOSE
public static final SystemInfo.Item INSTANCE_PURPOSE
-
REJECTED_LOGINS_DUE_CONC_USERS
public static final SystemInfo.Item REJECTED_LOGINS_DUE_CONC_USERS
-
INSTANCE_NUMBER
public static final SystemInfo.Item INSTANCE_NUMBER
-
WS_CALLS_MAX
public static final SystemInfo.Item WS_CALLS_MAX
-
WS_CALLS_AVG
public static final SystemInfo.Item WS_CALLS_AVG
-
WSC_CALLS_MAX
public static final SystemInfo.Item WSC_CALLS_MAX
-
WSC_CALLS_AVG
public static final SystemInfo.Item WSC_CALLS_AVG
-
WSR_CALLS_MAX
public static final SystemInfo.Item WSR_CALLS_MAX
-
WSR_CALLS_AVG
public static final SystemInfo.Item WSR_CALLS_AVG
-
-
Method Detail
-
values
public static SystemInfo.Item[] 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 (SystemInfo.Item c : SystemInfo.Item.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemInfo.Item 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
-
getLabel
public String getLabel()
-
isIdInfo
public boolean isIdInfo()
-
-