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