All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.personify.iam.model.util.location.QAddress Maven / Gradle / Ivy

There is a newer version: 1.5.2.RELEASE
Show newest version
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 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy