Packages

object Parser

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val Z3MaxDateOption: String
  5. val Z3MinDateOption: String
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def attributeSplits(name: String, binding: Class[_], options: Map[String, String]): Seq[String]

    Creates splits suitable for an attribute index.

    Creates splits suitable for an attribute index. Each indexed attribute can be split individually.

    Options are:

    * 'attr.<attribute>.pattern' - pattern used for a given attribute

    Additional patterns can be specified with 'attr.<attribute>.pattern2', etc

    name

    attribute name

    binding

    attribute type

    options

    user data containing split configuration

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def idSplits(options: Map[String, String]): Seq[String]

    Creates splits suitable for a feature ID index.

    Creates splits suitable for a feature ID index. If nothing is specified, will assume a hex distribution.

    * Options are:

    * 'id.pattern' - pattern used

    Additional patterns can be specified with 'id.pattern2', etc

    options

    user data containing split configuration

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def z2Splits(options: Map[String, String]): Seq[Long]

    Creates splits suitable for a z2 index.

    Creates splits suitable for a z2 index. Splits can be created by specifying the number of bits that will be used. The total number of splits is: 2^^(number of bits)

    Options are:

    * 'z2.bits' - number of bits used to create splits. e.g. 2 bits will create 4 splits.

    options

    user data containing split configuration

  24. def z3BitSplits(options: Map[String, String]): Seq[Long]

    Creates just the bit-splits for a z3 index.

    Creates just the bit-splits for a z3 index. Generally this would be applied per time interval. Use z3Splits to get bits per time interval.

    The total number of splits is: 2^^(number of bits)

    Options are:

    * 'z3.bits' - number of bits used to create splits. e.g. 2 bits will create 4 splits.

    options

    user data containing split configuration

  25. def z3Splits(interval: TimePeriod, options: Map[String, String]): Seq[(Short, Option[Long])]

    Creates splits suitable for a z3 index.

    Creates splits suitable for a z3 index. Generally, a split will be created per time interval (e.g. week). Further splits can be created by specifying the number of bits that will be used for splits, per week. The total number of splits is: (number of time intervals) * 2^^(number of bits)

    Options are:

    * 'z3.min' - min date for data * 'z3.max' - max date for data (must also include min date) - will default to current date if not specified * 'z3.bits' - number of bits used to create splits. e.g. 2 bits will create 4 splits.

    interval

    interval of the z3 index

    options

    user data containing split configuration

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped