win.doyto.query.test.user.UserLevelHaving Maven / Gradle / Ivy
// Generated by delombok at Sat Jan 27 04:38:03 UTC 2024
/*
* Copyright © 2019-2024 Forb Yuan
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package win.doyto.query.test.user;
import win.doyto.query.core.Having;
/**
* UserLevelHaving
*
* @author f0rb on 2022-05-16
* @since 0.3.1
*/
public class UserLevelHaving implements Having {
private Integer countGt;
private Integer countLt;
@java.lang.SuppressWarnings("all")
@lombok.Generated
UserLevelHaving(final Integer countGt, final Integer countLt) {
this.countGt = countGt;
this.countLt = countLt;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static class UserLevelHavingBuilder {
@java.lang.SuppressWarnings("all")
@lombok.Generated
private Integer countGt;
@java.lang.SuppressWarnings("all")
@lombok.Generated
private Integer countLt;
@java.lang.SuppressWarnings("all")
@lombok.Generated
UserLevelHavingBuilder() {
}
/**
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public UserLevelHaving.UserLevelHavingBuilder countGt(final Integer countGt) {
this.countGt = countGt;
return this;
}
/**
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
@lombok.Generated
public UserLevelHaving.UserLevelHavingBuilder countLt(final Integer countLt) {
this.countLt = countLt;
return this;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public UserLevelHaving build() {
return new UserLevelHaving(this.countGt, this.countLt);
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public java.lang.String toString() {
return "UserLevelHaving.UserLevelHavingBuilder(countGt=" + this.countGt + ", countLt=" + this.countLt + ")";
}
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public static UserLevelHaving.UserLevelHavingBuilder builder() {
return new UserLevelHaving.UserLevelHavingBuilder();
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Integer getCountGt() {
return this.countGt;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public Integer getCountLt() {
return this.countLt;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public void setCountGt(final Integer countGt) {
this.countGt = countGt;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public void setCountLt(final Integer countLt) {
this.countLt = countLt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy