コード例 #1
0
 /** The basic containment relation between places. */
 @NotNull
 public Builder containedIn(@NotNull Place.Builder place) {
   putValue("containedIn", place.build());
   return this;
 }
コード例 #2
0
ファイル: School.java プロジェクト: kropp/jsonld-metadata
 /** Points-of-Sales operated by the organization or person. */
 @NotNull
 public Builder hasPOS(@NotNull Place.Builder place) {
   putValue("hasPOS", place.build());
   return this;
 }
コード例 #3
0
ファイル: School.java プロジェクト: kropp/jsonld-metadata
 /** The place where the Organization was founded. */
 @NotNull
 public Builder foundingLocation(@NotNull Place.Builder place) {
   putValue("foundingLocation", place.build());
   return this;
 }
コード例 #4
0
 /**
  * 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;
 }