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

com.ocs.dynamo.functional.domain.QCountry Maven / Gradle / Ivy

package com.ocs.dynamo.functional.domain;

import static com.querydsl.core.types.PathMetadataFactory.*;

import com.querydsl.core.types.dsl.*;

import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;


/**
 * QCountry is a Querydsl query type for Country
 */
@Generated("com.querydsl.codegen.EntitySerializer")
public class QCountry extends EntityPathBase {

    private static final long serialVersionUID = 1270686351L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QCountry country = new QCountry("country");

    public final QDomainChild _super;

    public final StringPath code = createString("code");

    //inherited
    public final NumberPath id;

    //inherited
    public final StringPath name;

    public final QRegion parent;

    public final QRegion region;

    //inherited
    public final StringPath type;

    //inherited
    public final NumberPath version;

    public QCountry(String variable) {
        this(Country.class, forVariable(variable), INITS);
    }

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

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

    public QCountry(PathMetadata metadata, PathInits inits) {
        this(Country.class, metadata, inits);
    }

    public QCountry(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QDomainChild(type, metadata, inits);
        this.id = _super.id;
        this.name = _super.name;
        this.parent = inits.isInitialized("parent") ? new QRegion(forProperty("parent")) : null;
        this.region = inits.isInitialized("region") ? new QRegion(forProperty("region")) : null;
        this.type = _super.type;
        this.version = _super.version;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy