Skip navigation links
oracle.simplefan
Enum LoadAdvisoryEvent.LoadStatus
java.lang.Object
java.lang.Enum<LoadAdvisoryEvent.LoadStatus>
oracle.simplefan.LoadAdvisoryEvent.LoadStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<LoadAdvisoryEvent.LoadStatus>
- Enclosing class:
- LoadAdvisoryEvent
-
public static enum LoadAdvisoryEvent.LoadStatus
- extends java.lang.Enum<LoadAdvisoryEvent.LoadStatus>
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
GOOD
public static final LoadAdvisoryEvent.LoadStatus GOOD
VIOLATING
public static final LoadAdvisoryEvent.LoadStatus VIOLATING
NO_DATA
public static final LoadAdvisoryEvent.LoadStatus NO_DATA
UNKNOWN
public static final LoadAdvisoryEvent.LoadStatus UNKNOWN
values
public static final LoadAdvisoryEvent.LoadStatus[] 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(LoadAdvisoryEvent.LoadStatus c : LoadAdvisoryEvent.LoadStatus.values())
System.out.println(c);
-
- Returns:
- an array containing the constants of this enum type, in the order they are declared.
valueOf
public static LoadAdvisoryEvent.LoadStatus 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 name.
Skip navigation links
Copyright © 2008, 2009, Oracle and/or its affiliates. All rights reserved.