Packages

object LayerFilter

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LayerFilter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Expression[F, T] extends AnyRef

    Value and Or form the leaf and nodes of the expression tree used by the filter.

    Value and Or form the leaf and nodes of the expression tree used by the filter. F should be a companion object type (ex: Intersects.type) and is used to restrict combination of disjunctions to a single type. T is the actual parameter value of the expression

  2. case class Or[F, T](f1: Expression[F, T], f2: Expression[F, T]) extends Expression[F, T] with Product with Serializable
  3. case class Value[F, T](value: T) extends Expression[F, T] with Product with Serializable