Enum CDRStreamConfigState
- java.lang.Object
-
- java.lang.Enum<CDRStreamConfigState>
-
- com.opencloud.slee.resources.cdr.management.CDRStreamConfigState
-
- All Implemented Interfaces:
Serializable
,Comparable<CDRStreamConfigState>
public enum CDRStreamConfigState extends Enum<CDRStreamConfigState>
Represents a relation between the RA loaded configuration and the stream configuration defined in the CDR stream configuration profile table for a given CDR stream.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MODIFIED
The RA loaded configuration differs from the stream configuration defined in the CDR stream configuration profile table.
The RA configuration requires reloading for the stream configuration update to take effect.NOT_EXISTS
The RA did not initialise properly (unconfigured), or the stream configuration does not exist neither in the RA loaded configuration nor in the CDR stream configuration profile table.TO_BE_ADDED
The new stream configuration was added in the CDR stream configuration profile table.
The RA configuration requires reloading for the new stream to become operable.TO_BE_REMOVED
The stream configuration was removed from the CDR stream configuration profile table.
The RA configuration requires reloading for the old stream to become inoperable.UP_TO_DATE
The RA loaded configuration matches the stream configuration defined in the CDR stream configuration profile table.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CDRStreamConfigState
valueOf(String name)
Returns the enum constant of this type with the specified name.static CDRStreamConfigState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UP_TO_DATE
public static final CDRStreamConfigState UP_TO_DATE
The RA loaded configuration matches the stream configuration defined in the CDR stream configuration profile table.
-
MODIFIED
public static final CDRStreamConfigState MODIFIED
The RA loaded configuration differs from the stream configuration defined in the CDR stream configuration profile table.
The RA configuration requires reloading for the stream configuration update to take effect.
-
TO_BE_ADDED
public static final CDRStreamConfigState TO_BE_ADDED
The new stream configuration was added in the CDR stream configuration profile table.
The RA configuration requires reloading for the new stream to become operable.
-
TO_BE_REMOVED
public static final CDRStreamConfigState TO_BE_REMOVED
The stream configuration was removed from the CDR stream configuration profile table.
The RA configuration requires reloading for the old stream to become inoperable.
-
NOT_EXISTS
public static final CDRStreamConfigState NOT_EXISTS
The RA did not initialise properly (unconfigured), or the stream configuration does not exist neither in the RA loaded configuration nor in the CDR stream configuration profile table.
-
-
Method Detail
-
values
public static CDRStreamConfigState[] 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 (CDRStreamConfigState c : CDRStreamConfigState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CDRStreamConfigState 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
-
-