Esempio n. 1
0
 /** The basic containment relation between places. */
 @NotNull
 public Builder containedIn(@NotNull Place.Builder place) {
   putValue("containedIn", place.build());
   return this;
 }
Esempio n. 2
0
 /** Points-of-Sales operated by the organization or person. */
 @NotNull
 public Builder hasPOS(@NotNull Place.Builder place) {
   putValue("hasPOS", place.build());
   return this;
 }
Esempio n. 3
0
 /** The place where the Organization was founded. */
 @NotNull
 public Builder foundingLocation(@NotNull Place.Builder place) {
   putValue("foundingLocation", place.build());
   return this;
 }
 /**
  * The location depicted or described in the content. For example, the location in a photograph
  * or painting.
  */
 @NotNull
 public Builder contentLocation(@NotNull Place.Builder place) {
   putValue("contentLocation", place.build());
   return this;
 }