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

be.personify.iam.model.util.location.QCity 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;


/**
 * QCity is a Querydsl query type for City
 */
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QCity extends EntityPathBase {

    private static final long serialVersionUID = -881069912L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QCity city = new QCity("city");

    public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);

    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 name = createString("name");

    public final QProvince province;

    public QCity(String variable) {
        this(City.class, forVariable(variable), INITS);
    }

    public QCity(Path path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }

    public QCity(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }

    public QCity(PathMetadata metadata, PathInits inits) {
        this(City.class, metadata, inits);
    }

    public QCity(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.country = inits.isInitialized("country") ? new QCountry(forProperty("country"), inits.get("country")) : null;
        this.location = inits.isInitialized("location") ? new QLocation(forProperty("location")) : null;
        this.province = inits.isInitialized("province") ? new QProvince(forProperty("province"), inits.get("province")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy