com.netgrif.application.engine.petrinet.domain.arcs.QReadArc 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.petrinet.domain.arcs;
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;
/**
* QReadArc is a Querydsl query type for ReadArc
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QReadArc extends EntityPathBase {
private static final long serialVersionUID = -361312630L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QReadArc readArc = new QReadArc("readArc");
public final QPTArc _super;
// inherited
public final org.bson.types.QObjectId _id;
//inherited
public final ListPath breakpoints;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QNode destination;
//inherited
public final StringPath destinationId;
public final BooleanPath executable = createBoolean("executable");
//inherited
public final StringPath importId;
//inherited
public final NumberPath multiplicity;
// inherited
public final org.bson.types.QObjectId objectId;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QPlace place;
// inherited
public final com.netgrif.application.engine.petrinet.domain.arcs.reference.QReference reference;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QNode source;
//inherited
public final StringPath sourceId;
//inherited
public final StringPath stringId;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QTransition transition;
public QReadArc(String variable) {
this(ReadArc.class, forVariable(variable), INITS);
}
public QReadArc(Path extends ReadArc> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QReadArc(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QReadArc(PathMetadata metadata, PathInits inits) {
this(ReadArc.class, metadata, inits);
}
public QReadArc(Class extends ReadArc> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QPTArc(type, metadata, inits);
this._id = _super._id;
this.breakpoints = _super.breakpoints;
this.destination = _super.destination;
this.destinationId = _super.destinationId;
this.importId = _super.importId;
this.multiplicity = _super.multiplicity;
this.objectId = _super.objectId;
this.place = _super.place;
this.reference = _super.reference;
this.source = _super.source;
this.sourceId = _super.sourceId;
this.stringId = _super.stringId;
this.transition = _super.transition;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy