com.capitalone.dashboard.model.QCodeQuality 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.mysema.query.types.PathMetadataFactory.*;
import com.mysema.query.types.path.*;
import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
import com.mysema.query.types.path.PathInits;
/**
* QCodeQuality is a Querydsl query type for CodeQuality
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QCodeQuality extends EntityPathBase {
private static final long serialVersionUID = -910994128L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCodeQuality codeQuality = new QCodeQuality("codeQuality");
public final QBaseModel _super;
public final org.bson.types.QObjectId buildId;
public final org.bson.types.QObjectId collectorItemId;
// inherited
public final org.bson.types.QObjectId id;
public final SetPath metrics = this.createSet("metrics", CodeQualityMetric.class, QCodeQualityMetric.class, PathInits.DIRECT2);
public final StringPath name = createString("name");
public final NumberPath timestamp = createNumber("timestamp", Long.class);
public final EnumPath type = createEnum("type", CodeQualityType.class);
public final StringPath url = createString("url");
public final StringPath version = createString("version");
public QCodeQuality(String variable) {
this(CodeQuality.class, forVariable(variable), INITS);
}
public QCodeQuality(Path extends CodeQuality> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QCodeQuality(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QCodeQuality(PathMetadata> metadata, PathInits inits) {
this(CodeQuality.class, metadata, inits);
}
public QCodeQuality(Class extends CodeQuality> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.buildId = inits.isInitialized("buildId") ? new org.bson.types.QObjectId(forProperty("buildId")) : null;
this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
this.id = _super.id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy