io.ebeaninternal.server.query.ExtraJoin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.query;
public class ExtraJoin {
private final STreePropertyAssoc property;
private final boolean containsMany;
public ExtraJoin(STreePropertyAssoc property, boolean containsMany) {
this.property = property;
this.containsMany = containsMany;
}
public STreePropertyAssoc getProperty() {
return property;
}
public boolean isContainsMany() {
return containsMany;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy