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

io.gumga.reports.stimulsoft.QGumgaReport Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
package io.gumga.reports.stimulsoft;

/**
 * Created by willian on 09/01/18.
 */

import com.mysema.query.types.Path;
import com.mysema.query.types.PathMetadata;
import com.mysema.query.types.path.*;
import io.gumga.domain.QGumgaModel;
import io.gumga.domain.domains.GumgaOi;

import javax.annotation.Generated;

import static com.mysema.query.types.PathMetadataFactory.forVariable;

/**
 * QGumgaReport is a Querydsl query type for GumgaReport
 */
@Generated("com.mysema.query.codegen.SupertypeSerializer")
public class QGumgaReport extends EntityPathBase {

    private static final long serialVersionUID = -501273345L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QGumgaReport gumgaReport = new QGumgaReport("gumgaReport");

    public final QGumgaModel _super = new QGumgaModel(this);

    public StringPath definition = createString("definition");

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

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

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

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

    //inherited
    public final ComparablePath oi = _super.oi;

    public final ListPath values = this.createList("values", GumgaReport.class, QGumgaReport.class, PathInits.DIRECT2);

    public final NumberPath version = createNumber("version", Integer.class);

    public QGumgaReport(String variable) {
        this(GumgaReport.class, forVariable(variable), INITS);
    }

    public QGumgaReport(Path path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QGumgaReport(PathMetadata metadata) {
        this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QGumgaReport(PathMetadata metadata, PathInits inits) {
        this(GumgaReport.class, metadata, inits);
    }

    public QGumgaReport(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.definition = inits.isInitialized("definition") ? new StringPath(forProperty("definition")) : null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy