Packages

final case class Place(id: String = "", name: String = "", type: String = "", location: Option[Location] = _root_.scala.None, coordinate: Option[Coordinate] = _root_.scala.None, info: Map[String, String] = ..., unknownFields: UnknownFieldSet = ...) extends GeneratedMessage with Updatable[Place] with Product with Serializable

Describing a scene needs describing where the scene is happening – place, what is happening in terms of events, and who are the objects participating in the event. note coordinate(x,y,z) are in meters

Json representation of Place

"place": {
"id": "string",
"name": "endeavor",
"type": "building/garage",
"location": {
"lat": 37.37060687475246,
"lon": -121.9672466762127,
"alt": 0.00
}
id

Id

name

name

type

Parking Lot or Entrance or Room

location

in lat, lon, alt

coordinate

in x,y,z

info

additional info, example details of park lot

Annotations
@SerialVersionUID()
Linear Supertypes
Updatable[Place], GeneratedMessage, Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Place
  2. Updatable
  3. GeneratedMessage
  4. Serializable
  5. Serializable
  6. Product
  7. Equals
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Place(id: String = "", name: String = "", type: String = "", location: Option[Location] = _root_.scala.None, coordinate: Option[Coordinate] = _root_.scala.None, info: Map[String, String] = ..., unknownFields: UnknownFieldSet = ...)

    id

    Id

    name

    name

    type

    Parking Lot or Entrance or Room

    location

    in lat, lon, alt

    coordinate

    in x,y,z

    info

    additional info, example details of park lot

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. def addAllInfo(__vs: Iterable[(String, String)]): Place
  5. def addInfo(__vs: (String, String)*): Place
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clearCoordinate: Place
  8. def clearInfo: Place
  9. def clearLocation: Place
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  11. def companion: Place.type
    Definition Classes
    Place → GeneratedMessage
  12. val coordinate: Option[Coordinate]
  13. def discardUnknownFields: Place
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def getCoordinate: Coordinate
  17. def getField(__field: FieldDescriptor): PValue
    Definition Classes
    Place → GeneratedMessage
  18. def getFieldByNumber(__fieldNumber: Int): Any
    Definition Classes
    Place → GeneratedMessage
  19. def getLocation: Location
  20. val id: String
  21. val info: Map[String, String]
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. val location: Option[Location]
  24. val name: String
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. def serializedSize: Int
    Definition Classes
    Place → GeneratedMessage
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. final def toByteArray: Array[Byte]
    Definition Classes
    GeneratedMessage
  31. final def toByteString: ByteString
    Definition Classes
    GeneratedMessage
  32. final def toPMessage: PMessage
    Definition Classes
    GeneratedMessage
  33. def toProtoString: String
    Definition Classes
    Place → GeneratedMessage
  34. val type: String
  35. val unknownFields: UnknownFieldSet
  36. def update(ms: (Lens[Place, Place]) ⇒ Mutation[Place]*): Place
    Definition Classes
    Updatable
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def withCoordinate(__v: Coordinate): Place
  41. def withId(__v: String): Place
  42. def withInfo(__v: Map[String, String]): Place
  43. def withLocation(__v: Location): Place
  44. def withName(__v: String): Place
  45. def withType(__v: String): Place
  46. def withUnknownFields(__v: UnknownFieldSet): Place
  47. final def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage
  48. def writeTo(_output__: CodedOutputStream): Unit
    Definition Classes
    Place → GeneratedMessage
  49. final def writeTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage

Deprecated Value Members

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

Inherited from Updatable[Place]

Inherited from GeneratedMessage

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped