Skip to content

Commit

Permalink
regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
kropp committed Aug 4, 2015
1 parent cca9847 commit 438db03
Show file tree
Hide file tree
Showing 113 changed files with 6,804 additions and 432 deletions.
58 changes: 54 additions & 4 deletions src/main/java/org/schema/APIReference.java
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,33 @@ public Builder copyrightHolder(Person person) {
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Number number) {
this.copyrightYear = number;
public Builder copyrightYear(Integer integer) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setInteger(integer);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Long copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setLong(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Float copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setFloat(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Double copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setDouble(copyrightYear);
return this;
}
/**
Expand Down Expand Up @@ -604,8 +629,33 @@ public Builder typicalAgeRange(String typicalAgeRange) {
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Number number) {
this.version = number;
public Builder version(Integer integer) {
if(this.version == null) this.version = new Number();
this.version.setInteger(integer);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Long version) {
if(this.version == null) this.version = new Number();
this.version.setLong(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Float version) {
if(this.version == null) this.version = new Number();
this.version.setFloat(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Double version) {
if(this.version == null) this.version = new Number();
this.version.setDouble(version);
return this;
}
/**
Expand Down
58 changes: 54 additions & 4 deletions src/main/java/org/schema/AboutPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,33 @@ public Builder copyrightHolder(Person person) {
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Number number) {
this.copyrightYear = number;
public Builder copyrightYear(Integer integer) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setInteger(integer);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Long copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setLong(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Float copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setFloat(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Double copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setDouble(copyrightYear);
return this;
}
/**
Expand Down Expand Up @@ -552,8 +577,33 @@ public Builder typicalAgeRange(String typicalAgeRange) {
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Number number) {
this.version = number;
public Builder version(Integer integer) {
if(this.version == null) this.version = new Number();
this.version.setInteger(integer);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Long version) {
if(this.version == null) this.version = new Number();
this.version.setLong(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Float version) {
if(this.version == null) this.version = new Number();
this.version.setFloat(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Double version) {
if(this.version == null) this.version = new Number();
this.version.setDouble(version);
return this;
}
/**
Expand Down
58 changes: 54 additions & 4 deletions src/main/java/org/schema/Answer.java
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,33 @@ public Builder copyrightHolder(Person person) {
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Number number) {
this.copyrightYear = number;
public Builder copyrightYear(Integer integer) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setInteger(integer);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Long copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setLong(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Float copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setFloat(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Double copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setDouble(copyrightYear);
return this;
}
/**
Expand Down Expand Up @@ -500,8 +525,33 @@ public Builder typicalAgeRange(String typicalAgeRange) {
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Number number) {
this.version = number;
public Builder version(Integer integer) {
if(this.version == null) this.version = new Number();
this.version.setInteger(integer);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Long version) {
if(this.version == null) this.version = new Number();
this.version.setLong(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Float version) {
if(this.version == null) this.version = new Number();
this.version.setFloat(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Double version) {
if(this.version == null) this.version = new Number();
this.version.setDouble(version);
return this;
}
/**
Expand Down
58 changes: 54 additions & 4 deletions src/main/java/org/schema/Article.java
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,33 @@ public Builder copyrightHolder(Person person) {
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Number number) {
this.copyrightYear = number;
public Builder copyrightYear(Integer integer) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setInteger(integer);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Long copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setLong(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Float copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setFloat(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Double copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setDouble(copyrightYear);
return this;
}
/**
Expand Down Expand Up @@ -577,8 +602,33 @@ public Builder typicalAgeRange(String typicalAgeRange) {
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Number number) {
this.version = number;
public Builder version(Integer integer) {
if(this.version == null) this.version = new Number();
this.version.setInteger(integer);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Long version) {
if(this.version == null) this.version = new Number();
this.version.setLong(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Float version) {
if(this.version == null) this.version = new Number();
this.version.setFloat(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Double version) {
if(this.version == null) this.version = new Number();
this.version.setDouble(version);
return this;
}
/**
Expand Down
58 changes: 54 additions & 4 deletions src/main/java/org/schema/AudioObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,33 @@ public Builder copyrightHolder(Person person) {
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Number number) {
this.copyrightYear = number;
public Builder copyrightYear(Integer integer) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setInteger(integer);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Long copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setLong(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Float copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setFloat(copyrightYear);
return this;
}
/**
* The year during which the claimed copyright for the CreativeWork was first asserted.
*/
public Builder copyrightYear(Double copyrightYear) {
if(this.copyrightYear == null) this.copyrightYear = new Number();
this.copyrightYear.setDouble(copyrightYear);
return this;
}
/**
Expand Down Expand Up @@ -622,8 +647,33 @@ public Builder typicalAgeRange(String typicalAgeRange) {
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Number number) {
this.version = number;
public Builder version(Integer integer) {
if(this.version == null) this.version = new Number();
this.version.setInteger(integer);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Long version) {
if(this.version == null) this.version = new Number();
this.version.setLong(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Float version) {
if(this.version == null) this.version = new Number();
this.version.setFloat(version);
return this;
}
/**
* The version of the CreativeWork embodied by a specified resource.
*/
public Builder version(Double version) {
if(this.version == null) this.version = new Number();
this.version.setDouble(version);
return this;
}
/**
Expand Down
Loading

0 comments on commit 438db03

Please sign in to comment.