be.personify.iam.model.util.QArticle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
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;
/**
* QArticle is a Querydsl query type for Article
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QArticle extends EntityPathBase {
private static final long serialVersionUID = 974641242L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QArticle article = new QArticle("article");
public final QPersisted _super = new QPersisted(this);
public final QCategory category;
public final StringPath content = createString("content");
//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);
public final ListPath images = this.createList("images", ArticleImage.class, QArticleImage.class, PathInits.DIRECT2);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath title = createString("title");
public final BooleanPath visible = createBoolean("visible");
public QArticle(String variable) {
this(Article.class, forVariable(variable), INITS);
}
public QArticle(Path extends Article> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QArticle(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QArticle(PathMetadata metadata, PathInits inits) {
this(Article.class, metadata, inits);
}
public QArticle(Class extends Article> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.category = inits.isInitialized("category") ? new QCategory(forProperty("category")) : null;
}
}