Package com.avoka.fc.core.dao
Enum SystemInfoDao.TIInstance
- java.lang.Object
-
- java.lang.Enum<SystemInfoDao.TIInstance>
-
- com.avoka.fc.core.dao.SystemInfoDao.TIInstance
-
- All Implemented Interfaces:
Serializable
,Comparable<SystemInfoDao.TIInstance>
- Enclosing class:
- SystemInfoDao
public static enum SystemInfoDao.TIInstance extends Enum<SystemInfoDao.TIInstance>
Provides a TIInstance enumeration.- Since:
- 5.0
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAppId()
static SystemInfoDao.TIInstance
valueOf(String name)
Returns the enum constant of this type with the specified name.static SystemInfoDao.TIInstance[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROD
public static final SystemInfoDao.TIInstance PROD
The PROD TIInstance.
-
DEV1
public static final SystemInfoDao.TIInstance DEV1
-
DEV2
public static final SystemInfoDao.TIInstance DEV2
-
DEV3
public static final SystemInfoDao.TIInstance DEV3
-
DEV4
public static final SystemInfoDao.TIInstance DEV4
-
TEST
public static final SystemInfoDao.TIInstance TEST
-
TEST50
public static final SystemInfoDao.TIInstance TEST50
-
STAGING
public static final SystemInfoDao.TIInstance STAGING
-
DEMO
public static final SystemInfoDao.TIInstance DEMO
-
DEBUG
public static final SystemInfoDao.TIInstance DEBUG
-
-
Method Detail
-
values
public static SystemInfoDao.TIInstance[] 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 (SystemInfoDao.TIInstance c : SystemInfoDao.TIInstance.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemInfoDao.TIInstance 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
-
getAppId
public String getAppId()
- Returns:
- the Add ID.
-
-