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