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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CrossConnectStatus.LightLevelIndicatorcreate(String key)StringgetValue()static CrossConnectStatus.LightLevelIndicatorvalueOf(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- 
NoLightpublic static final CrossConnectStatus.LightLevelIndicator NoLight 
 - 
LowWarnpublic static final CrossConnectStatus.LightLevelIndicator LowWarn 
 - 
HighWarnpublic static final CrossConnectStatus.LightLevelIndicator HighWarn 
 - 
Badpublic static final CrossConnectStatus.LightLevelIndicator Bad 
 - 
Goodpublic static final CrossConnectStatus.LightLevelIndicator Good 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static CrossConnectStatus.LightLevelIndicator create(String key) 
 
- 
 
-