org.scaladebugger.api.lowlevel.events

filters

package filters

Visibility
  1. Public
  2. All

Type Members

  1. case class AndFilter(filters: JDIEventFilter*) extends JDIEventFilter with Product with Serializable

    Represents a local filter that will return the result of ANDing multiple filters together.

  2. case class CustomPropertyFilter(key: AnyRef, value: AnyRef) extends JDIEventFilter with CustomPropertyFilterLike with Product with Serializable

    Represents a local filter that will result in ignoring any incoming event if it does not have a matching custom property.

  3. trait CustomPropertyFilterLike extends AnyRef

    Represents the interface for custom property filters to implement.

  4. trait JDIEventFilter extends JDIEventArgument

    Represents a filter for a JDI Event.

  5. trait JDIEventFilterProcessor extends JDIEventProcessor

    Represents a processor for a JDI Event Filter.

  6. case class MaxTriggerFilter(count: Int) extends JDIEventFilter with Product with Serializable

    Represents a local filter that will result in ignoring any incoming event after N successful events have been reported.

  7. case class MethodNameFilter(name: String) extends JDIEventFilter with Product with Serializable

    Represents a local filter that will result in ignoring any incoming event if it does not have the specified method name.

  8. case class MinTriggerFilter(count: Int) extends JDIEventFilter with Product with Serializable

    Represents a local filter that will result in ignoring any incoming event until N successful events have been reported.

  9. case class NotFilter(filter: JDIEventFilter) extends JDIEventFilter with Product with Serializable

    Represents a local filter that will return the result of negating a filter.

  10. case class OrFilter(filters: JDIEventFilter*) extends JDIEventFilter with Product with Serializable

    Represents a local filter that will return the result of ORing multiple filters together.

  11. case class UniqueIdPropertyFilter(id: String) extends JDIEventFilter with CustomPropertyFilterLike with Product with Serializable

    Represents a local filter that will result in ignoring any incoming event if it does not have a matching unique id.

Value Members

  1. package processors

Ungrouped