J.Object

trait Object extends Lookup[String, Any] with Info
Companion
object
Source
Object.scala
trait Able.Info
trait Able.Tag
trait Lookup[String, Any]
trait Collection[Any]
trait Able.Size
trait Able.~[Any]
class Object
trait Matchable
class Any

Def

def boolean(name: String): Boolean
def double(name: String): Double
@targetName("double_Opt")
def double_?(name: String): Opt
def int(name: String): Int
@targetName("int_Opt")
def int_?(name: String): Opt
def jArray(name: String): Array
@targetName("array_Opt")
def jArray_?(name: String): Opt[Array]
def jObject(name: String): Object
@targetName("object_Opt")
def jObject_?(name: String): Opt[Object]
def long(name: String): Long
@targetName("long_Opt")
def long_?(name: String): Opt
def string(name: String): String
@targetName("string_Opt")
def string_?(name: String): Opt
override def tag: String
Definition Classes
Source
Object.scala

Inherited

@targetName("stream")
def ~: ~[Any]

Value stream

Value stream

Returns a Stream of all values for this Lookup

Inherited from
Lookup
Source
__.scala
def get(v: String): Any

Element by key

Element by key

Returns element associated with the given key

Note. This operation will fail, if value is not found. Thus, use safer get_? in most cases

Inherited from
Lookup
Source
__.scala
@targetName("get_Stream")
def get_~(keys: ~[String]): ~[Any]

Multi key lookup

Multi key lookup

Returns a stream of values for given stream of keys.

Note: There may be less values, than keys. Keys with no assosiated values are ignored.

Inherited from
Lookup
Source
__.scala
@targetName("get_Opt")
def get_?(key: String): Opt[Any]

Optional element by key

Optional element by key

Optionally returns element associated with the given key

Inherited from
Lookup
Source
__.scala
def isEmpty: Boolean
Inherited from
Size
Source
Size.scala
@targetName("key_Stream")
def key_~: ~[String]

Key stream

Key stream

Returns a Stream of all keys for this Lookup

Inherited from
Lookup
Source
__.scala
@targetName("pair_Stream")
def pair_~: ~[(String, Any)]

Key/value pair stream

Key/value pair stream

Returns a Stream of all key/value pairs for this Lookup

Inherited from
Lookup
Source
__.scala
def size: Int
Inherited from
Collection
Source
__.scala