Package org.onosproject.net.pi.service
Enum PiTranslationEvent.Type
- java.lang.Object
-
- java.lang.Enum<PiTranslationEvent.Type>
-
- org.onosproject.net.pi.service.PiTranslationEvent.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<PiTranslationEvent.Type>
- Enclosing class:
- PiTranslationEvent<T extends PiTranslatable,E extends PiEntity>
public static enum PiTranslationEvent.Type extends Enum<PiTranslationEvent.Type>
Type of event.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FORGOT
Signals that a previously learned mapping between a PD entity and its PI counterpart has been removed.LEARNED
Signals that A PD entity has been translated to a PI one, and the mapping between the two entities has been learned by the system.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PiTranslationEvent.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static PiTranslationEvent.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEARNED
public static final PiTranslationEvent.Type LEARNED
Signals that A PD entity has been translated to a PI one, and the mapping between the two entities has been learned by the system.
-
FORGOT
public static final PiTranslationEvent.Type FORGOT
Signals that a previously learned mapping between a PD entity and its PI counterpart has been removed.
-
-
Method Detail
-
values
public static PiTranslationEvent.Type[] 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 (PiTranslationEvent.Type c : PiTranslationEvent.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PiTranslationEvent.Type 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
-
-