com.netgrif.application.engine.petrinet.domain.QNode 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;
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;
/**
* QNode is a Querydsl query type for Node
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QNode extends EntityPathBase {
private static final long serialVersionUID = -493765763L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QNode node = new QNode("node");
public final QPetriNetObject _super;
// inherited
public final org.bson.types.QObjectId _id;
//inherited
public final StringPath importId;
// inherited
public final org.bson.types.QObjectId objectId;
public final QPosition position;
//inherited
public final StringPath stringId;
public final QI18nString title;
public QNode(String variable) {
this(Node.class, forVariable(variable), INITS);
}
public QNode(Path extends Node> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QNode(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QNode(PathMetadata metadata, PathInits inits) {
this(Node.class, metadata, inits);
}
public QNode(Class extends Node> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QPetriNetObject(type, metadata, inits);
this._id = _super._id;
this.importId = _super.importId;
this.objectId = _super.objectId;
this.position = inits.isInitialized("position") ? new QPosition(forProperty("position")) : null;
this.stringId = _super.stringId;
this.title = inits.isInitialized("title") ? new QI18nString(forProperty("title")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy