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

io.smilego.tenant.model.QParam Maven / Gradle / Ivy

Go to download

A application used as an example on how to set up pushing its components to the Central Repository.

There is a newer version: 1.2.5
Show newest version
package io.smilego.tenant.model;

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;


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

    private static final long serialVersionUID = 878082218L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QParam param = new QParam("param");

    public final QBaseEntity _super = new QBaseEntity(this);

    //inherited
    public final DateTimePath data = _super.data;

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

    public final QProperty property;

    public final QService service;

    public final QTenant tenant;

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

    //inherited
    public final NumberPath version = _super.version;

    public QParam(String variable) {
        this(Param.class, forVariable(variable), INITS);
    }

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

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

    public QParam(PathMetadata metadata, PathInits inits) {
        this(Param.class, metadata, inits);
    }

    public QParam(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.property = inits.isInitialized("property") ? new QProperty(forProperty("property")) : null;
        this.service = inits.isInitialized("service") ? new QService(forProperty("service")) : null;
        this.tenant = inits.isInitialized("tenant") ? new QTenant(forProperty("tenant")) : null;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy