com.netgrif.application.engine.petrinet.domain.arcs.reference.QReference 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.arcs.reference;
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;
/**
* QReference is a Querydsl query type for Reference
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QReference extends BeanPath {
private static final long serialVersionUID = -313702122L;
public static final QReference reference1 = new QReference("reference1");
public final NumberPath multiplicity = createNumber("multiplicity", Integer.class);
public final SimplePath referencable = createSimple("referencable", Referencable.class);
public final StringPath reference = createString("reference");
public final EnumPath type = createEnum("type", Type.class);
public QReference(String variable) {
super(Reference.class, forVariable(variable));
}
public QReference(Path extends Reference> path) {
super(path.getType(), path.getMetadata());
}
public QReference(PathMetadata metadata) {
super(Reference.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy