com.netgrif.application.engine.petrinet.domain.dataset.QUserField 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.dataset;
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;
/**
* QUserField is a Querydsl query type for UserField
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QUserField extends EntityPathBase {
private static final long serialVersionUID = -1601236898L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QUserField userField = new QUserField("userField");
public final QField _super;
// inherited
public final org.bson.types.QObjectId _id;
// inherited
public final com.fasterxml.jackson.databind.node.QObjectNode behavior;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QComponent component;
public final SimplePath defaultValue = createSimple("defaultValue", UserFieldValue.class);
// inherited
public final com.netgrif.application.engine.petrinet.domain.QI18nString description;
//inherited
public final BooleanPath dynamicDefaultValue;
//inherited
public final StringPath encryption;
//inherited
public final MapPath events;
// custom
// inherited
public final com.netgrif.application.engine.petrinet.domain.QFormat format;
//inherited
public final BooleanPath immediate;
//inherited
public final StringPath importId;
// inherited
public final com.netgrif.application.engine.petrinet.domain.dataset.logic.action.runner.QExpression initExpression;
// inherited
public final com.netgrif.application.engine.petrinet.domain.dataset.logic.QFieldLayout layout;
//inherited
public final NumberPath length;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QI18nString name;
//inherited
public final NumberPath order;
//inherited
public final StringPath parentCaseId;
//inherited
public final StringPath parentTaskId;
// inherited
public final com.netgrif.application.engine.petrinet.domain.QI18nString placeholder;
public final SetPath roles = this.createSet("roles", String.class, StringPath.class, PathInits.DIRECT2);
//inherited
public final StringPath stringId;
public final EnumPath type = createEnum("type", FieldType.class);
//inherited
public final ListPath validations;
public final SimplePath value = createSimple("value", UserFieldValue.class);
public QUserField(String variable) {
this(UserField.class, forVariable(variable), INITS);
}
public QUserField(Path extends UserField> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QUserField(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QUserField(PathMetadata metadata, PathInits inits) {
this(UserField.class, metadata, inits);
}
public QUserField(Class extends UserField> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QField(type, metadata, inits);
this._id = _super._id;
this.behavior = _super.behavior;
this.component = _super.component;
this.description = _super.description;
this.dynamicDefaultValue = _super.dynamicDefaultValue;
this.encryption = _super.encryption;
this.events = _super.events;
this.format = _super.format;
this.immediate = _super.immediate;
this.importId = _super.importId;
this.initExpression = _super.initExpression;
this.layout = _super.layout;
this.length = _super.length;
this.name = _super.name;
this.order = _super.order;
this.parentCaseId = _super.parentCaseId;
this.parentTaskId = _super.parentTaskId;
this.placeholder = _super.placeholder;
this.stringId = _super.stringId;
this.validations = _super.validations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy