Gemfire JavaDocs
Package org.apache.geode.admin
Class AlertLevel
- java.lang.Object
-
- org.apache.geode.admin.AlertLevel
-
- All Implemented Interfaces:
java.io.Serializable
@Deprecated @Immutable public class AlertLevel extends java.lang.Object implements java.io.Serializable
Deprecated.as of 7.0 use themanagement
package insteadType-safe enumeration forAlert
level.- Since:
- GemFire 3.5
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static AlertLevel
ERROR
Deprecated.static AlertLevel
OFF
Deprecated.int
ordinal
Deprecated.static AlertLevel
SEVERE
Deprecated.static AlertLevel
WARNING
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
Deprecated.Indicates whether some other object is "equal to" this one.static AlertLevel
forName(java.lang.String name)
Deprecated.Returns theAlertLevel
with the given namestatic AlertLevel
forSeverity(int severity)
Deprecated.Returns theAlertLevel
for the given severitystatic AlertLevel
fromOrdinal(int ordinal)
Deprecated.Return the AlertLevel represented by specified ordinaljava.lang.String
getName()
Deprecated.int
getSeverity()
Deprecated.int
hashCode()
Deprecated.Returns a hash code for the object.java.lang.String
toString()
Deprecated.Returns a string representation for this alert level.static AlertLevel[]
values()
Deprecated.
-
-
-
Field Detail
-
WARNING
@Immutable public static final AlertLevel WARNING
Deprecated.
-
ERROR
@Immutable public static final AlertLevel ERROR
Deprecated.
-
SEVERE
@Immutable public static final AlertLevel SEVERE
Deprecated.
-
OFF
@Immutable public static final AlertLevel OFF
Deprecated.
-
ordinal
public final int ordinal
Deprecated.
-
-
Method Detail
-
fromOrdinal
public static AlertLevel fromOrdinal(int ordinal)
Deprecated.Return the AlertLevel represented by specified ordinal- Parameters:
ordinal
- the ordinal of theAlertLevel
to return- Returns:
- the
AlertLevel
with the given ordinal
-
forSeverity
public static AlertLevel forSeverity(int severity)
Deprecated.Returns theAlertLevel
for the given severity- Parameters:
severity
- the severity of theAlertLevel
to return- Returns:
- the
AlertLevel
with the given severity - Throws:
java.lang.IllegalArgumentException
- If there is no alert level with the givenseverity
-
forName
public static AlertLevel forName(java.lang.String name)
Deprecated.Returns theAlertLevel
with the given name- Parameters:
name
- the name of theAlertLevel
to return- Returns:
- the
AlertLevel
with the given name - Throws:
java.lang.IllegalArgumentException
- If there is no alert level namedname
-
getSeverity
public int getSeverity()
Deprecated.
-
getName
public java.lang.String getName()
Deprecated.
-
values
public static AlertLevel[] values()
Deprecated.
-
toString
public java.lang.String toString()
Deprecated.Returns a string representation for this alert level.- Overrides:
toString
in classjava.lang.Object
- Returns:
- the name of this alert level
-
equals
public boolean equals(java.lang.Object other)
Deprecated.Indicates whether some other object is "equal to" this one.- Overrides:
equals
in classjava.lang.Object
- Parameters:
other
- the reference object with which to compare.- Returns:
- true if this object is the same as the obj argument; false otherwise.
-
hashCode
public int hashCode()
Deprecated.Returns a hash code for the object. This method is supported for the benefit of hashtables such as those provided by java.util.Hashtable.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- the integer 0 if description is null; otherwise a unique integer.
-
-