Enum CacheStatus
- java.lang.Object
-
- java.lang.Enum<CacheStatus>
-
- com.alachisoft.ncache.runtime.cachemanagement.CacheStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CacheStatus>
public enum CacheStatus extends java.lang.Enum<CacheStatus>
It tells about cache status that either the cache is Stopped or Running. This includes the CacheStatus Enum, use to store cache status information.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Running
When cache is running, then CacheStatus has this value.Stopped
When cache is stopped, then CacheStatus has this value.UnRegistered
When cache is unregistered, then CacheStatus has this value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CacheStatus
forValue(int value)
Retrieves the enum constant of the specified value, if exists.int
getValue()
Order is important in enums.static CacheStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CacheStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UnRegistered
public static final CacheStatus UnRegistered
When cache is unregistered, then CacheStatus has this value.
-
Stopped
public static final CacheStatus Stopped
When cache is stopped, then CacheStatus has this value.
-
Running
public static final CacheStatus Running
When cache is running, then CacheStatus has this value.
-
-
Method Detail
-
values
public static CacheStatus[] 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 (CacheStatus c : CacheStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheStatus 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
-
forValue
public static CacheStatus forValue(int value)
Retrieves the enum constant of the specified value, if exists.- Parameters:
value
- Enum constant index.- Returns:
- Enum constant.
-
getValue
public int getValue()
Order is important in enums. By using getValue() method, each enum constant index can be found, just like array index.- Returns:
- Enum constant index.
-
-