com.eurodyn.qlack2.fuse.blog.impl.model.QBlgComment Maven / Gradle / Ivy
package com.eurodyn.qlack2.fuse.blog.impl.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;
/**
* QBlgComment is a Querydsl query type for BlgComment
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QBlgComment extends EntityPathBase {
private static final long serialVersionUID = 1411721467L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QBlgComment blgComment = new QBlgComment("blgComment");
public final SetPath blgTrackbackses = this.createSet("blgTrackbackses", BlgTrackbacks.class, QBlgTrackbacks.class, PathInits.DIRECT2);
public final StringPath body = createString("body");
public final NumberPath dateCommented = createNumber("dateCommented", Long.class);
public final StringPath id = createString("id");
public final QBlgPost postId;
public final StringPath userId = createString("userId");
public QBlgComment(String variable) {
this(BlgComment.class, forVariable(variable), INITS);
}
public QBlgComment(Path extends BlgComment> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QBlgComment(PathMetadata metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QBlgComment(PathMetadata metadata, PathInits inits) {
this(BlgComment.class, metadata, inits);
}
public QBlgComment(Class extends BlgComment> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.postId = inits.isInitialized("postId") ? new QBlgPost(forProperty("postId"), inits.get("postId")) : null;
}
}