Enum PiTranslationEvent.Type

    • 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 name
        NullPointerException - if the argument is null