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

com.eurodyn.qlack.fuse.lexicon.model.QLanguage Maven / Gradle / Ivy

The newest version!
package com.eurodyn.qlack.fuse.lexicon.model;

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;


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

    private static final long serialVersionUID = -16942895L;

    public static final QLanguage language = new QLanguage("language");

    public final com.eurodyn.qlack.common.model.QQlackBaseModel _super = new com.eurodyn.qlack.common.model.QQlackBaseModel(this);

    public final BooleanPath active = createBoolean("active");

    public final ListPath data = this.createList("data", Data.class, QData.class, PathInits.DIRECT2);

    public final NumberPath dbversion = createNumber("dbversion", Long.class);

    //inherited
    public final StringPath id = _super.id;

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

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

    public final ListPath templates = this.createList("templates", Template.class, QTemplate.class, PathInits.DIRECT2);

    public QLanguage(String variable) {
        super(Language.class, forVariable(variable));
    }

    public QLanguage(Path path) {
        super(path.getType(), path.getMetadata());
    }

    public QLanguage(PathMetadata metadata) {
        super(Language.class, metadata);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy