com.netgrif.application.engine.workflow.domain.triggers.QTimeTrigger 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.workflow.domain.triggers;
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;
/**
* QTimeTrigger is a Querydsl query type for TimeTrigger
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTimeTrigger extends EntityPathBase {
private static final long serialVersionUID = 36977451L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QTimeTrigger timeTrigger = new QTimeTrigger("timeTrigger");
public final QTrigger _super;
// inherited
public final org.bson.types.QObjectId _id;
//inherited
public final StringPath importId;
public final DateTimePath startDate = createDateTime("startDate", java.time.LocalDateTime.class);
public final StringPath timeString = createString("timeString");
public QTimeTrigger(String variable) {
this(TimeTrigger.class, forVariable(variable), INITS);
}
public QTimeTrigger(Path extends TimeTrigger> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QTimeTrigger(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QTimeTrigger(PathMetadata metadata, PathInits inits) {
this(TimeTrigger.class, metadata, inits);
}
public QTimeTrigger(Class extends TimeTrigger> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QTrigger(type, metadata, inits);
this._id = _super._id;
this.importId = _super.importId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy