Enum CrossConnectStatus.LightLevelIndicator
- java.lang.Object
-
- java.lang.Enum<CrossConnectStatus.LightLevelIndicator>
-
- com.oracle.bmc.vnmonitoring.model.CrossConnectStatus.LightLevelIndicator
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<CrossConnectStatus.LightLevelIndicator>
- Enclosing class:
- CrossConnectStatus
public static enum CrossConnectStatus.LightLevelIndicator extends Enum<CrossConnectStatus.LightLevelIndicator> implements BmcEnum
Status indicator corresponding to the light level.**NO_LIGHT:** No measurable light * **LOW_WARN:** There's measurable light but it's too low * **HIGH_WARN:** Light level is too high * **BAD:** There's measurable light but the signal-to-noise ratio is bad * **GOOD:** Good light level
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CrossConnectStatus.LightLevelIndicator
create(String key)
String
getValue()
static CrossConnectStatus.LightLevelIndicator
valueOf(String name)
Returns the enum constant of this type with the specified name.static CrossConnectStatus.LightLevelIndicator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NoLight
public static final CrossConnectStatus.LightLevelIndicator NoLight
-
LowWarn
public static final CrossConnectStatus.LightLevelIndicator LowWarn
-
HighWarn
public static final CrossConnectStatus.LightLevelIndicator HighWarn
-
Bad
public static final CrossConnectStatus.LightLevelIndicator Bad
-
Good
public static final CrossConnectStatus.LightLevelIndicator Good
-
-
Method Detail
-
values
public static CrossConnectStatus.LightLevelIndicator[] 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 (CrossConnectStatus.LightLevelIndicator c : CrossConnectStatus.LightLevelIndicator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CrossConnectStatus.LightLevelIndicator 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
-
create
public static CrossConnectStatus.LightLevelIndicator create(String key)
-
-