com.capitalone.dashboard.model.QTestCapability Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QTestCapability is a Querydsl query type for TestCapability
*/
@Generated("com.querydsl.codegen.EmbeddableSerializer")
public class QTestCapability extends BeanPath {
private static final long serialVersionUID = -906976340L;
public static final QTestCapability testCapability = new QTestCapability("testCapability");
public final StringPath description = createString("description");
public final NumberPath duration = createNumber("duration", Long.class);
public final NumberPath endTime = createNumber("endTime", Long.class);
public final StringPath executionId = createString("executionId");
public final NumberPath failedTestSuiteCount = createNumber("failedTestSuiteCount", Integer.class);
public final NumberPath skippedTestSuiteCount = createNumber("skippedTestSuiteCount", Integer.class);
public final NumberPath startTime = createNumber("startTime", Long.class);
public final EnumPath status = createEnum("status", TestCaseStatus.class);
public final NumberPath successTestSuiteCount = createNumber("successTestSuiteCount", Integer.class);
public final CollectionPath tags = this.createCollection("tags", String.class, StringPath.class, PathInits.DIRECT2);
public final StringPath testSetName = createString("testSetName");
public final CollectionPath> testSuites = this.>createCollection("testSuites", TestSuite.class, SimplePath.class, PathInits.DIRECT2);
public final NumberPath timestamp = createNumber("timestamp", Long.class);
public final StringPath toolType = createString("toolType");
public final NumberPath totalTestSuiteCount = createNumber("totalTestSuiteCount", Integer.class);
public final EnumPath type = createEnum("type", TestSuiteType.class);
public final NumberPath unknownStatusTestSuiteCount = createNumber("unknownStatusTestSuiteCount", Integer.class);
public final StringPath url = createString("url");
public QTestCapability(String variable) {
super(TestCapability.class, forVariable(variable));
}
public QTestCapability(Path extends TestCapability> path) {
super(path.getType(), path.getMetadata());
}
public QTestCapability(PathMetadata metadata) {
super(TestCapability.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy