object Parser
- Alphabetic
- By Inheritance
- Parser
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val Z3MaxDateOption: String
- val Z3MinDateOption: String
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
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
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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
-
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
-
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
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated