All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netgrif.application.engine.petrinet.domain.arcs.QArc Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version
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;


/**
 * QArc is a Querydsl query type for Arc
 */
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QArc extends EntityPathBase {

    private static final long serialVersionUID = -676522240L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QArc arc = new QArc("arc");

    public final com.netgrif.application.engine.petrinet.domain.QPetriNetObject _super;

    // inherited
    public final org.bson.types.QObjectId _id;

    public final ListPath breakpoints = this.createList("breakpoints", com.netgrif.application.engine.petrinet.domain.Position.class, com.netgrif.application.engine.petrinet.domain.QPosition.class, PathInits.DIRECT2);

    public final com.netgrif.application.engine.petrinet.domain.QNode destination;

    public final StringPath destinationId = createString("destinationId");

    public final BooleanPath executable = createBoolean("executable");

    //inherited
    public final StringPath importId;

    public final NumberPath multiplicity = createNumber("multiplicity", Integer.class);

    // inherited
    public final org.bson.types.QObjectId objectId;

    public final com.netgrif.application.engine.petrinet.domain.QPlace place;

    public final com.netgrif.application.engine.petrinet.domain.arcs.reference.QReference reference;

    public final com.netgrif.application.engine.petrinet.domain.QNode source;

    public final StringPath sourceId = createString("sourceId");

    //inherited
    public final StringPath stringId;

    public final com.netgrif.application.engine.petrinet.domain.QTransition transition;

    public QArc(String variable) {
        this(Arc.class, forVariable(variable), INITS);
    }

    public QArc(Path path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }

    public QArc(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }

    public QArc(PathMetadata metadata, PathInits inits) {
        this(Arc.class, metadata, inits);
    }

    public QArc(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new com.netgrif.application.engine.petrinet.domain.QPetriNetObject(type, metadata, inits);
        this._id = _super._id;
        this.destination = inits.isInitialized("destination") ? new com.netgrif.application.engine.petrinet.domain.QNode(forProperty("destination"), inits.get("destination")) : null;
        this.importId = _super.importId;
        this.objectId = _super.objectId;
        this.place = inits.isInitialized("place") ? new com.netgrif.application.engine.petrinet.domain.QPlace(forProperty("place"), inits.get("place")) : null;
        this.reference = inits.isInitialized("reference") ? new com.netgrif.application.engine.petrinet.domain.arcs.reference.QReference(forProperty("reference")) : null;
        this.source = inits.isInitialized("source") ? new com.netgrif.application.engine.petrinet.domain.QNode(forProperty("source"), inits.get("source")) : null;
        this.stringId = _super.stringId;
        this.transition = inits.isInitialized("transition") ? new com.netgrif.application.engine.petrinet.domain.QTransition(forProperty("transition"), inits.get("transition")) : null;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy