com.netgrif.application.engine.rules.domain.facts.QFact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.rules.domain.facts;
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;
/**
* QFact is a Querydsl query type for Fact
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QFact extends EntityPathBase {
private static final long serialVersionUID = 1462580270L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QFact fact = new QFact("fact");
public final org.bson.types.QObjectId _id;
public final DateTimePath creationDate = createDateTime("creationDate", java.time.LocalDateTime.class);
public QFact(String variable) {
this(Fact.class, forVariable(variable), INITS);
}
public QFact(Path extends Fact> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QFact(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QFact(PathMetadata metadata, PathInits inits) {
this(Fact.class, metadata, inits);
}
public QFact(Class extends Fact> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._id = inits.isInitialized("_id") ? new org.bson.types.QObjectId(forProperty("_id")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy