com.netgrif.application.engine.petrinet.domain.QUriNode 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;
/**
* QUriNode is a Querydsl query type for UriNode
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QUriNode extends EntityPathBase {
private static final long serialVersionUID = -1800335821L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QUriNode uriNode = new QUriNode("uriNode");
public final org.bson.types.QObjectId _id;
public final SetPath children = this.createSet("children", UriNode.class, QUriNode.class, PathInits.DIRECT2);
public final SetPath childrenId = this.createSet("childrenId", String.class, StringPath.class, PathInits.DIRECT2);
public final SetPath> contentTypes = this.>createSet("contentTypes", UriContentType.class, EnumPath.class, PathInits.DIRECT2);
public final NumberPath level = createNumber("level", Integer.class);
public final StringPath name = createString("name");
public final QUriNode parent;
public final StringPath parentId = createString("parentId");
public final StringPath stringId = createString("stringId");
public final StringPath uriPath = createString("uriPath");
public QUriNode(String variable) {
this(UriNode.class, forVariable(variable), INITS);
}
public QUriNode(Path extends UriNode> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QUriNode(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QUriNode(PathMetadata metadata, PathInits inits) {
this(UriNode.class, metadata, inits);
}
public QUriNode(Class extends UriNode> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._id = inits.isInitialized("_id") ? new org.bson.types.QObjectId(forProperty("_id")) : null;
this.parent = inits.isInitialized("parent") ? new QUriNode(forProperty("parent"), inits.get("parent")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy