Skip to content

Commit

Permalink
Regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkiGibson committed Apr 6, 2018
1 parent 8e29257 commit d242572
Show file tree
Hide file tree
Showing 34 changed files with 305 additions and 609 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@ public Maybe<Boolean> getTrueAsync() {
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -226,8 +225,7 @@ public Maybe<Boolean> getFalseAsync() {
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -319,8 +317,7 @@ public Maybe<Boolean> getNullAsync() {
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -365,7 +362,6 @@ public Maybe<Boolean> getInvalidAsync() {
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
}
}
);
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,7 @@ public Maybe<byte[]> getNullAsync() {
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -174,8 +173,7 @@ public Maybe<byte[]> getEmptyAsync() {
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -220,8 +218,7 @@ public Maybe<byte[]> getNonAsciiAsync() {
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -316,7 +313,6 @@ public Maybe<byte[]> getInvalidAsync() {
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
}
}
);
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ public Maybe<ArrayWrapper> getValidAsync() {
public Maybe<ArrayWrapper> apply(BodyResponse<ArrayWrapper> res) {
return res.body() == null ? Maybe.<ArrayWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -227,8 +226,7 @@ public Maybe<ArrayWrapper> getEmptyAsync() {
public Maybe<ArrayWrapper> apply(BodyResponse<ArrayWrapper> res) {
return res.body() == null ? Maybe.<ArrayWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -324,7 +322,6 @@ public Maybe<ArrayWrapper> getNotProvidedAsync() {
public Maybe<ArrayWrapper> apply(BodyResponse<ArrayWrapper> res) {
return res.body() == null ? Maybe.<ArrayWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ public Maybe<Basic> getValidAsync() {
public Maybe<Basic> apply(BodyResponse<Basic> res) {
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -233,8 +232,7 @@ public Maybe<Basic> getInvalidAsync() {
public Maybe<Basic> apply(BodyResponse<Basic> res) {
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -279,8 +277,7 @@ public Maybe<Basic> getEmptyAsync() {
public Maybe<Basic> apply(BodyResponse<Basic> res) {
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -325,8 +322,7 @@ public Maybe<Basic> getNullAsync() {
public Maybe<Basic> apply(BodyResponse<Basic> res) {
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -371,7 +367,6 @@ public Maybe<Basic> getNotProvidedAsync() {
public Maybe<Basic> apply(BodyResponse<Basic> res) {
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
}
}
);
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@ public Maybe<DictionaryWrapper> getValidAsync() {
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -232,8 +231,7 @@ public Maybe<DictionaryWrapper> getEmptyAsync() {
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -329,8 +327,7 @@ public Maybe<DictionaryWrapper> getNullAsync() {
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -375,7 +372,6 @@ public Maybe<DictionaryWrapper> getNotProvidedAsync() {
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ public Maybe<Siamese> getValidAsync() {
public Maybe<Siamese> apply(BodyResponse<Siamese> res) {
return res.body() == null ? Maybe.<Siamese>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ public Maybe<Fish> getValidAsync() {
public Maybe<Fish> apply(BodyResponse<Fish> res) {
return res.body() == null ? Maybe.<Fish>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ public Maybe<Fish> getValidAsync() {
public Maybe<Fish> apply(BodyResponse<Fish> res) {
return res.body() == null ? Maybe.<Fish>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -356,8 +355,7 @@ public Maybe<Salmon> getComplicatedAsync() {
public Maybe<Salmon> apply(BodyResponse<Salmon> res) {
return res.body() == null ? Maybe.<Salmon>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,7 @@ public Maybe<IntWrapper> getIntAsync() {
public Maybe<IntWrapper> apply(BodyResponse<IntWrapper> res) {
return res.body() == null ? Maybe.<IntWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -322,8 +321,7 @@ public Maybe<LongWrapper> getLongAsync() {
public Maybe<LongWrapper> apply(BodyResponse<LongWrapper> res) {
return res.body() == null ? Maybe.<LongWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -419,8 +417,7 @@ public Maybe<FloatWrapper> getFloatAsync() {
public Maybe<FloatWrapper> apply(BodyResponse<FloatWrapper> res) {
return res.body() == null ? Maybe.<FloatWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -516,8 +513,7 @@ public Maybe<DoubleWrapper> getDoubleAsync() {
public Maybe<DoubleWrapper> apply(BodyResponse<DoubleWrapper> res) {
return res.body() == null ? Maybe.<DoubleWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -613,8 +609,7 @@ public Maybe<BooleanWrapper> getBoolAsync() {
public Maybe<BooleanWrapper> apply(BodyResponse<BooleanWrapper> res) {
return res.body() == null ? Maybe.<BooleanWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -710,8 +705,7 @@ public Maybe<StringWrapper> getStringAsync() {
public Maybe<StringWrapper> apply(BodyResponse<StringWrapper> res) {
return res.body() == null ? Maybe.<StringWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -807,8 +801,7 @@ public Maybe<DateWrapper> getDateAsync() {
public Maybe<DateWrapper> apply(BodyResponse<DateWrapper> res) {
return res.body() == null ? Maybe.<DateWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -904,8 +897,7 @@ public Maybe<DatetimeWrapper> getDateTimeAsync() {
public Maybe<DatetimeWrapper> apply(BodyResponse<DatetimeWrapper> res) {
return res.body() == null ? Maybe.<DatetimeWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -1001,8 +993,7 @@ public Maybe<Datetimerfc1123Wrapper> getDateTimeRfc1123Async() {
public Maybe<Datetimerfc1123Wrapper> apply(BodyResponse<Datetimerfc1123Wrapper> res) {
return res.body() == null ? Maybe.<Datetimerfc1123Wrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -1098,8 +1089,7 @@ public Maybe<DurationWrapper> getDurationAsync() {
public Maybe<DurationWrapper> apply(BodyResponse<DurationWrapper> res) {
return res.body() == null ? Maybe.<DurationWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down Expand Up @@ -1195,8 +1185,7 @@ public Maybe<ByteWrapper> getByteAsync() {
public Maybe<ByteWrapper> apply(BodyResponse<ByteWrapper> res) {
return res.body() == null ? Maybe.<ByteWrapper>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ public Maybe<ReadonlyObj> getValidAsync() {
public Maybe<ReadonlyObj> apply(BodyResponse<ReadonlyObj> res) {
return res.body() == null ? Maybe.<ReadonlyObj>empty() : Maybe.just(res.body());
}
}
);
});
}

/**
Expand Down
Loading

0 comments on commit d242572

Please sign in to comment.