com.netgrif.application.engine.rules.domain.facts.QNetImportedFact 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;
/**
* QNetImportedFact is a Querydsl query type for NetImportedFact
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QNetImportedFact extends EntityPathBase {
private static final long serialVersionUID = 807903947L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QNetImportedFact netImportedFact = new QNetImportedFact("netImportedFact");
public final QPetriNetFact _super;
// inherited
public final org.bson.types.QObjectId _id;
//inherited
public final DateTimePath creationDate;
public final EnumPath eventPhase = createEnum("eventPhase", com.netgrif.application.engine.petrinet.domain.events.EventPhase.class);
//inherited
public final StringPath netId;
public QNetImportedFact(String variable) {
this(NetImportedFact.class, forVariable(variable), INITS);
}
public QNetImportedFact(Path extends NetImportedFact> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QNetImportedFact(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QNetImportedFact(PathMetadata metadata, PathInits inits) {
this(NetImportedFact.class, metadata, inits);
}
public QNetImportedFact(Class extends NetImportedFact> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QPetriNetFact(type, metadata, inits);
this._id = _super._id;
this.creationDate = _super.creationDate;
this.netId = _super.netId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy