com.netgrif.application.engine.petrinet.domain.version.QVersion 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.version;
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;
/**
* QVersion is a Querydsl query type for Version
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QVersion extends BeanPath {
private static final long serialVersionUID = -1836443289L;
public static final QVersion version = new QVersion("version");
public final NumberPath major = createNumber("major", Long.class);
public final NumberPath minor = createNumber("minor", Long.class);
public final NumberPath patch = createNumber("patch", Long.class);
public QVersion(String variable) {
super(Version.class, forVariable(variable));
}
public QVersion(Path extends Version> path) {
super(path.getType(), path.getMetadata());
}
public QVersion(PathMetadata metadata) {
super(Version.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy