Enum Class PhasedSelector

java.lang.Object
java.lang.Enum<PhasedSelector>
tools.refinery.interpreter.rete.network.communication.PhasedSelector
All Implemented Interfaces:
Serializable, Comparable<PhasedSelector>, Constable, MessageSelector

public enum PhasedSelector extends Enum<PhasedSelector> implements MessageSelector
A default message selector that can be used to associate phases to messages.
Since:
2.3
  • Enum Constant Details

    • DEFAULT

      public static final PhasedSelector DEFAULT
      No special distinguishing feature
    • MONOTONE

      public static final PhasedSelector MONOTONE
      Inserts and delete-insert monotone change pairs
    • ANTI_MONOTONE

      public static final PhasedSelector ANTI_MONOTONE
      Deletes
  • Method Details

    • values

      public static PhasedSelector[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PhasedSelector valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null