com.netgrif.application.engine.petrinet.domain.views.QView 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.views;
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;
/**
* QView is a Querydsl query type for View
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QView extends BeanPath {
private static final long serialVersionUID = -1939666080L;
public static final QView view = new QView("view");
public final StringPath value = createString("value");
public QView(String variable) {
super(View.class, forVariable(variable));
}
public QView(Path extends View> path) {
super(path.getType(), path.getMetadata());
}
public QView(PathMetadata metadata) {
super(View.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy