be.personify.iam.model.util.location.QAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.util.location;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QAddress is a Querydsl query type for Address
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QAddress extends EntityPathBase {
private static final long serialVersionUID = 953327511L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QAddress address = new QAddress("address");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final QCity city;
public final QCountry country;
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
public final QLocation location;
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath street = createString("street");
public final StringPath streetNumber = createString("streetNumber");
public QAddress(String variable) {
this(Address.class, forVariable(variable), INITS);
}
public QAddress(Path extends Address> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QAddress(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QAddress(PathMetadata metadata, PathInits inits) {
this(Address.class, metadata, inits);
}
public QAddress(Class extends Address> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.city = inits.isInitialized("city") ? new QCity(forProperty("city"), inits.get("city")) : null;
this.country = inits.isInitialized("country") ? new QCountry(forProperty("country"), inits.get("country")) : null;
this.location = inits.isInitialized("location") ? new QLocation(forProperty("location")) : null;
}
}