class OJAIDocument extends ScalaOjaiDocument[OJAIDocument] with Dynamic
OJAIDocument represents a JSON document which can be accessed with dynamic object model as well as through setters and getters. OJAIDocument extends the original org.ojai.Document with input and output types mapped to that of scala types. To create an OJAIDocument use the factory function newDocument in MapRDBSpark or through sparkContext functions loadMapRDBTable.
val doc = MapRDBSpark.newDocument(jsonString) or val docs = sc.loadMapRDBTable(tableName) Here are the ways to access elements in OJAIDocument doc.address -- accesses the element with address as the key and returns the value specified for it as AnyRef doc.address[String] -- access the elements with address as the key and returns the value specified for it as String doc.getString("address") -- getString is an accessor method that can also be used to get the value for address as String. Here are the ways to set value to a key in OJAIDocument doc.city = "San Francisco" or doc.set("city", "San Francisco")
- Alphabetic
- By Inheritance
- OJAIDocument
- Dynamic
- ScalaOjaiDocument
- LoggingTrait
- Externalizable
- Serializable
- Document
- Iterable
- IterableLike
- Equals
- GenIterable
- GenIterableLike
- Traversable
- GenTraversable
- GenericTraversableTemplate
- TraversableLike
- GenTraversableLike
- Parallelizable
- TraversableOnce
- GenTraversableOnce
- FilterMonadic
- HasNewBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
OJAIDocument(dc: Document)
Create a new scala's version of ojai Document from java's version of ojai document.
Create a new scala's version of ojai Document from java's version of ojai document.
- dc
java's version of ojai Document
Type Members
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++[B >: (String, Value), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
++:[B >: (String, Value), That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike
-
def
++:[B >: (String, Value), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
THIS: OJAIDocument
- Definition Classes
- OJAIDocument → ScalaOjaiDocument
-
def
addString(b: StringBuilder): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
aggregate[B](z: ⇒ B)(seqop: (B, (String, Value)) ⇒ B, combop: (B, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asJsonString(options: JsonOptions): String
- Definition Classes
- ScalaOjaiDocument → Document
-
def
asJsonString(): String
- Definition Classes
- ScalaOjaiDocument → Document
-
def
asMap(): Map[String, AnyRef]
- Definition Classes
- ScalaOjaiDocument → Document
-
def
asReader(fieldPath: FieldPath): DocumentReader
- Definition Classes
- ScalaOjaiDocument → Document
-
def
asReader(fieldPath: String): DocumentReader
- Definition Classes
- ScalaOjaiDocument → Document
-
def
asReader(): DocumentReader
- Definition Classes
- ScalaOjaiDocument → Document
-
def
canEqual(that: Any): Boolean
- Definition Classes
- IterableLike → Equals
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
def
collect[B, That](pf: PartialFunction[(String, Value), B])(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
collectFirst[B](pf: PartialFunction[(String, Value), B]): Option[B]
- Definition Classes
- TraversableOnce
-
def
companion: GenericCompanion[Iterable]
- Definition Classes
- Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
-
def
copyToArray[B >: (String, Value)](xs: Array[B], start: Int, len: Int): Unit
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: (String, Value)](xs: Array[B]): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: (String, Value)](xs: Array[B], start: Int): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToBuffer[B >: (String, Value)](dest: Buffer[B]): Unit
- Definition Classes
- TraversableOnce
-
def
count(p: ((String, Value)) ⇒ Boolean): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
delete(fieldPath: FieldPath): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
delete(fieldPath: String): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
drop(n: Int): Iterable[(String, Value)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
dropRight(n: Int): Iterable[(String, Value)]
- Definition Classes
- IterableLike
-
def
dropWhile(p: ((String, Value)) ⇒ Boolean): Iterable[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
empty(): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exists(p: ((String, Value)) ⇒ Boolean): Boolean
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
filter(p: ((String, Value)) ⇒ Boolean): Iterable[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
filterNot(p: ((String, Value)) ⇒ Boolean): Iterable[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
find(p: ((String, Value)) ⇒ Boolean): Option[(String, Value)]
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
flatMap[B, That](f: ((String, Value)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike → FilterMonadic
-
def
flatten[B](implicit asTraversable: ((String, Value)) ⇒ GenTraversableOnce[B]): Iterable[B]
- Definition Classes
- GenericTraversableTemplate
-
def
fold[A1 >: (String, Value)](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldLeft[B](z: B)(op: (B, (String, Value)) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldRight[B](z: B)(op: ((String, Value), B) ⇒ B): B
- Definition Classes
- IterableLike → TraversableOnce → GenTraversableOnce
-
def
forall(p: ((String, Value)) ⇒ Boolean): Boolean
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
foreach[U](f: ((String, Value)) ⇒ U): Unit
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
-
def
genericBuilder[B]: Builder[B, Iterable[B]]
- Definition Classes
- GenericTraversableTemplate
-
def
getBinary(fieldPath: FieldPath): ByteBuffer
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getBinary(fieldPath: String): ByteBuffer
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getBinarySerializable(fieldPath: FieldPath): DBBinaryValue
- Definition Classes
- ScalaOjaiDocument
-
def
getBinarySerializable(fieldPath: String): DBBinaryValue
- Definition Classes
- ScalaOjaiDocument
-
def
getBoolean(fieldPath: FieldPath): Boolean
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getBoolean(fieldPath: String): Boolean
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getBooleanObj(fieldPath: FieldPath): Boolean
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getBooleanObj(fieldPath: String): Boolean
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getByte(fieldPath: FieldPath): Byte
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getByte(fieldPath: String): Byte
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getByteObj(fieldPath: FieldPath): Byte
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getByteObj(fieldPath: String): Byte
- Definition Classes
- ScalaOjaiDocument → Document
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
getDate(fieldPath: FieldPath): ODate
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getDate(fieldPath: String): ODate
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getDecimal(fieldPath: FieldPath): BigDecimal
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getDecimal(fieldPath: String): BigDecimal
- Definition Classes
- ScalaOjaiDocument → Document
-
lazy val
getDoc: Document
- Definition Classes
- ScalaOjaiDocument
-
def
getDouble(fieldPath: FieldPath): Double
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getDouble(fieldPath: String): Double
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getDoubleObj(fieldPath: FieldPath): Double
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getDoubleObj(fieldPath: String): Double
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getFloat(fieldPath: FieldPath): Float
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getFloat(fieldPath: String): Float
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getFloatObj(fieldPath: FieldPath): Float
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getFloatObj(fieldPath: String): Float
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getId(): Value
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getIdBinary(): ByteBuffer
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getIdBinarySerializable: DBBinaryValue
- Definition Classes
- ScalaOjaiDocument
-
def
getIdString(): String
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getInt(fieldPath: FieldPath): Int
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getInt(fieldPath: String): Int
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getIntObj(fieldPath: FieldPath): Integer
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getIntObj(fieldPath: String): Integer
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getInterval(fieldPath: FieldPath): OInterval
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getInterval(fieldPath: String): OInterval
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getList(fieldPath: FieldPath): Seq[AnyRef]
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getList(fieldPath: String): Seq[AnyRef]
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getLong(fieldPath: FieldPath): Long
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getLong(fieldPath: String): Long
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getLongObj(fieldPath: FieldPath): Long
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getLongObj(fieldPath: String): Long
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getMap(fieldPath: FieldPath): Map[String, AnyRef]
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getMap(fieldPath: String): Map[String, AnyRef]
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getShort(fieldPath: FieldPath): Short
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getShort(fieldPath: String): Short
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getShortObj(fieldPath: FieldPath): Short
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getShortObj(fieldPath: String): Short
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getString(fieldPath: FieldPath): String
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getString(fieldPath: String): String
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getTime(fieldPath: FieldPath): OTime
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getTime(fieldPath: String): OTime
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getTimestamp(fieldPath: FieldPath): OTimestamp
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getTimestamp(fieldPath: String): OTimestamp
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getValue(fieldPath: FieldPath): Value
- Definition Classes
- ScalaOjaiDocument → Document
-
def
getValue(fieldPath: String): Value
- Definition Classes
- ScalaOjaiDocument → Document
-
def
groupBy[K](f: ((String, Value)) ⇒ K): Map[K, Iterable[(String, Value)]]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
grouped(size: Int): Iterator[Iterable[(String, Value)]]
- Definition Classes
- IterableLike
-
def
hasDefiniteSize: Boolean
- Definition Classes
- TraversableLike → TraversableOnce → GenTraversableOnce
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
head: (String, Value)
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
headOption: Option[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
init: Iterable[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
inits: Iterator[Iterable[(String, Value)]]
- Definition Classes
- TraversableLike
-
def
isEmpty: Boolean
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isReadOnly(): Boolean
- Definition Classes
- ScalaOjaiDocument → Document
-
final
def
isTraversableAgain: Boolean
- Definition Classes
- TraversableLike → GenTraversableLike → GenTraversableOnce
-
def
iterator: ScalaDocumentIterator
- Definition Classes
- ScalaOjaiDocument → IterableLike → GenIterableLike
-
def
last: (String, Value)
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
lastOption: Option[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
log: Logger
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logDebug(msg: ⇒ String, throwable: Throwable): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logDebug(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logError(msg: ⇒ String, throwable: Throwable): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logError(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logInfo(msg: ⇒ String, throwable: Throwable): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logInfo(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logName: String
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logTrace(msg: ⇒ String, throwable: Throwable): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logTrace(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logWarning(msg: ⇒ String, throwable: Throwable): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
logWarning(msg: ⇒ String): Unit
- Attributes
- protected
- Definition Classes
- LoggingTrait
-
def
map[B, That](f: ((String, Value)) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike → FilterMonadic
-
def
max[B >: (String, Value)](implicit cmp: Ordering[B]): (String, Value)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
maxBy[B](f: ((String, Value)) ⇒ B)(implicit cmp: Ordering[B]): (String, Value)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
min[B >: (String, Value)](implicit cmp: Ordering[B]): (String, Value)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
minBy[B](f: ((String, Value)) ⇒ B)(implicit cmp: Ordering[B]): (String, Value)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString: String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(sep: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(start: String, sep: String, end: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
newBuilder: Builder[(String, Value), Iterable[(String, Value)]]
- Attributes
- protected[this]
- Definition Classes
- GenericTraversableTemplate → HasNewBuilder
-
def
nonEmpty: Boolean
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
par: ParIterable[(String, Value)]
- Definition Classes
- Parallelizable
-
def
parCombiner: Combiner[(String, Value), ParIterable[(String, Value)]]
- Attributes
- protected[this]
- Definition Classes
- TraversableLike → Parallelizable
-
def
partition(p: ((String, Value)) ⇒ Boolean): (Iterable[(String, Value)], Iterable[(String, Value)])
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
product[B >: (String, Value)](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
readExternal(objectinput: ObjectInput): Unit
- Definition Classes
- ScalaOjaiDocument → Externalizable
-
def
reduce[A1 >: (String, Value)](op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceLeft[B >: (String, Value)](op: (B, (String, Value)) ⇒ B): B
- Definition Classes
- TraversableOnce
-
def
reduceLeftOption[B >: (String, Value)](op: (B, (String, Value)) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceOption[A1 >: (String, Value)](op: (A1, A1) ⇒ A1): Option[A1]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRight[B >: (String, Value)](op: ((String, Value), B) ⇒ B): B
- Definition Classes
- IterableLike → TraversableOnce → GenTraversableOnce
-
def
reduceRightOption[B >: (String, Value)](op: ((String, Value), B) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
repr: Iterable[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
reversed: List[(String, Value)]
- Attributes
- protected[this]
- Definition Classes
- TraversableOnce
-
def
sameElements[B >: (String, Value)](that: GenIterable[B]): Boolean
- Definition Classes
- IterableLike → GenIterableLike
-
def
scan[B >: (String, Value), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
scanLeft[B, That](z: B)(op: (B, (String, Value)) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
scanRight[B, That](z: B)(op: ((String, Value), B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(String, Value)], B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
- Annotations
- @migration
- Migration
(Changed in version 2.9.0) The behavior of
scanRighthas changed. The previous behavior can be reproduced with scanRight.reverse.
- def selectDynamic[T](fieldPath: String)(implicit e: DefaultType[T, AnyRef], f: OJAIType[T]): documentTypeUtils.OJAIType.Self
-
def
seq: Iterable[(String, Value)]
- Definition Classes
- Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
-
def
set(fieldPath: FieldPath, value: Seq[_ <: AnyRef]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Seq[_ <: AnyRef]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Value): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Value): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Document): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Document): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Map[String, _ <: AnyRef]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Map[String, _ <: AnyRef]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: ByteBuffer): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: ByteBuffer): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Seq[Byte], off: Integer, len: Integer): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Seq[Byte], off: Integer, len: Integer): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: OInterval): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: OInterval): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: OTimestamp): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: OTimestamp): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: ODate): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: ODate): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: OTime): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: OTime): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: BigDecimal): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: BigDecimal): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Double): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Double): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Float): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Float): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Long): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Long): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Integer): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Integer): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Short): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Short): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Byte): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Byte): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: Boolean): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: Boolean): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: FieldPath, value: String): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
set(fieldPath: String, value: String): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[String]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[String]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[Double]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[Double]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[Float]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[Float]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[Long]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[Long]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[Int]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[Int]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[Short]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[Short]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[Byte]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[Byte]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: Array[Boolean]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: Array[Boolean]): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: FieldPath, values: AnyRef*): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setArray(fieldPath: String, values: AnyRef*): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setId(_id: DBBinaryValue): OJAIDocument
- Definition Classes
- ScalaOjaiDocument
-
def
setId(_id: ByteBuffer): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setId(_id: String): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setId(id: Value): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setNull(fieldPath: FieldPath): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
setNull(fieldPath: String): OJAIDocument
- Definition Classes
- ScalaOjaiDocument → Document
-
def
size(): Int
- Definition Classes
- ScalaOjaiDocument → Document → GenTraversableLike → TraversableOnce → GenTraversableOnce
-
def
sizeHintIfCheap: Int
- Attributes
- protected[collection]
- Definition Classes
- GenTraversableOnce
-
def
slice(from: Int, until: Int): Iterable[(String, Value)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
sliding(size: Int, step: Int): Iterator[Iterable[(String, Value)]]
- Definition Classes
- IterableLike
-
def
sliding(size: Int): Iterator[Iterable[(String, Value)]]
- Definition Classes
- IterableLike
-
def
span(p: ((String, Value)) ⇒ Boolean): (Iterable[(String, Value)], Iterable[(String, Value)])
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
splitAt(n: Int): (Iterable[(String, Value)], Iterable[(String, Value)])
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
stringPrefix: String
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
sum[B >: (String, Value)](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tail: Iterable[(String, Value)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
tails: Iterator[Iterable[(String, Value)]]
- Definition Classes
- TraversableLike
-
def
take(n: Int): Iterable[(String, Value)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
takeRight(n: Int): Iterable[(String, Value)]
- Definition Classes
- IterableLike
-
def
takeWhile(p: ((String, Value)) ⇒ Boolean): Iterable[(String, Value)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
thisCollection: Iterable[(String, Value)]
- Attributes
- protected[this]
- Definition Classes
- IterableLike → TraversableLike
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, Value), Col[(String, Value)]]): Col[(String, Value)]
- Definition Classes
- TraversableLike → TraversableOnce → GenTraversableOnce
-
def
toArray[B >: (String, Value)](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toBuffer[B >: (String, Value)]: Buffer[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toCollection(repr: Iterable[(String, Value)]): Iterable[(String, Value)]
- Attributes
- protected[this]
- Definition Classes
- IterableLike → TraversableLike
-
def
toIndexedSeq: IndexedSeq[(String, Value)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterable: Iterable[(String, Value)]
- Definition Classes
- IterableLike → TraversableOnce → GenTraversableOnce
-
def
toIterator: Iterator[(String, Value)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableOnce
- Annotations
- @deprecatedOverriding( ... , "2.11.0" )
-
def
toJavaBean[T](beanClass: Class[T]): T
- Definition Classes
- ScalaOjaiDocument → Document
- Annotations
- @throws( classOf[DecodingException] )
-
def
toList: List[(String, Value)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toMap[T, U](implicit ev: <:<[(String, Value), (T, U)]): Map[T, U]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSeq: Seq[(String, Value)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSet[B >: (String, Value)]: Set[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toStream: Stream[(String, Value)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableOnce
-
def
toString(): String
- Definition Classes
- ScalaOjaiDocument → TraversableLike → AnyRef → Any
-
def
toTraversable: Traversable[(String, Value)]
- Definition Classes
- TraversableLike → TraversableOnce → GenTraversableOnce
- Annotations
- @deprecatedOverriding( ... , "2.11.0" )
-
def
toVector: Vector[(String, Value)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
transpose[B](implicit asTraversable: ((String, Value)) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
- Definition Classes
- GenericTraversableTemplate
- Annotations
- @migration
- Migration
(Changed in version 2.9.0)
transposethrows anIllegalArgumentExceptionif collections are not uniformly sized.
-
def
unzip[A1, A2](implicit asPair: ((String, Value)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
- Definition Classes
- GenericTraversableTemplate
-
def
unzip3[A1, A2, A3](implicit asTriple: ((String, Value)) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
- Definition Classes
- GenericTraversableTemplate
- def updateDynamic[T](fieldPath: String)(v: T): Unit
-
def
view(from: Int, until: Int): IterableView[(String, Value), Iterable[(String, Value)]]
- Definition Classes
- IterableLike → TraversableLike
-
def
view: IterableView[(String, Value), Iterable[(String, Value)]]
- Definition Classes
- IterableLike → TraversableLike
-
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
withFilter(p: ((String, Value)) ⇒ Boolean): FilterMonadic[(String, Value), Iterable[(String, Value)]]
- Definition Classes
- TraversableLike → FilterMonadic
-
def
writeExternal(objectOutput: ObjectOutput): Unit
- Definition Classes
- ScalaOjaiDocument → Externalizable
-
def
zip[A1 >: (String, Value), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[(String, Value)], (A1, B), That]): That
- Definition Classes
- IterableLike → GenIterableLike
-
def
zipAll[B, A1 >: (String, Value), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[(String, Value)], (A1, B), That]): That
- Definition Classes
- IterableLike → GenIterableLike
-
def
zipWithIndex[A1 >: (String, Value), That](implicit bf: CanBuildFrom[Iterable[(String, Value)], (A1, Int), That]): That
- Definition Classes
- IterableLike → GenIterableLike
Deprecated Value Members
-
def
/:[B](z: B)(op: (B, (String, Value)) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldLeft instead of /:
-
def
:\[B](z: B)(op: ((String, Value), B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldRight instead of :\
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated