Enum DATA_RESOURCE_USAGE
- java.lang.Object
-
- java.lang.Enum<DATA_RESOURCE_USAGE>
-
- step.repository.alm.v16.otaclient.DATA_RESOURCE_USAGE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DATA_RESOURCE_USAGE>
public enum DATA_RESOURCE_USAGE extends java.lang.Enum<DATA_RESOURCE_USAGE>
The data resource usage.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRU_STATIC_DATA
Use static data.DRU_TEST_DATA_RESOURCE
Use the TEST data resource.DRU_TESTCONFIG_DATA_RESOURCE
Use the TESTCONFIG data resource.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DATA_RESOURCE_USAGE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DATA_RESOURCE_USAGE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRU_STATIC_DATA
public static final DATA_RESOURCE_USAGE DRU_STATIC_DATA
Use static data.
The value of this constant is 0
-
DRU_TEST_DATA_RESOURCE
public static final DATA_RESOURCE_USAGE DRU_TEST_DATA_RESOURCE
Use the TEST data resource.
The value of this constant is 1
-
DRU_TESTCONFIG_DATA_RESOURCE
public static final DATA_RESOURCE_USAGE DRU_TESTCONFIG_DATA_RESOURCE
Use the TESTCONFIG data resource.
The value of this constant is 2
-
-
Method Detail
-
values
public static DATA_RESOURCE_USAGE[] 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 (DATA_RESOURCE_USAGE c : DATA_RESOURCE_USAGE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DATA_RESOURCE_USAGE valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-