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

be.personify.iam.model.util.QArticleImage Maven / Gradle / Ivy

There is a newer version: 1.5.2.RELEASE
Show newest version
package be.personify.iam.model.util;

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;


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

    private static final long serialVersionUID = -1327822559L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QArticleImage articleImage = new QArticleImage("articleImage");

    public final QPersisted _super = new QPersisted(this);

    public final QArticle article;

    public final ArrayPath content = createArray("content", byte[].class);

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

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

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

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

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

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

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

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

    public QArticleImage(String variable) {
        this(ArticleImage.class, forVariable(variable), INITS);
    }

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

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

    public QArticleImage(PathMetadata metadata, PathInits inits) {
        this(ArticleImage.class, metadata, inits);
    }

    public QArticleImage(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.article = inits.isInitialized("article") ? new QArticle(forProperty("article"), inits.get("article")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy