com.capitalone.dashboard.model.QPerformance 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;
/**
* QPerformance is a Querydsl query type for Performance
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QPerformance extends EntityPathBase {
private static final long serialVersionUID = -2137927922L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QPerformance performance = new QPerformance("performance");
public final QBaseModel _super;
//inherited
public final StringPath clientReference;
public final org.bson.types.QObjectId collectorItemId;
public final org.bson.types.QObjectId executionId;
// inherited
public final org.bson.types.QObjectId id;
public final MapPath> metrics = this.>createMap("metrics", String.class, Object.class, SimplePath.class);
public final StringPath targetAppName = createString("targetAppName");
public final StringPath targetEnvName = createString("targetEnvName");
public final NumberPath timestamp = createNumber("timestamp", Long.class);
public final EnumPath type = createEnum("type", PerformanceType.class);
//inherited
public final DateTimePath upsertTime;
public final StringPath url = createString("url");
public final StringPath version = createString("version");
public QPerformance(String variable) {
this(Performance.class, forVariable(variable), INITS);
}
public QPerformance(Path extends Performance> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QPerformance(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QPerformance(PathMetadata metadata, PathInits inits) {
this(Performance.class, metadata, inits);
}
public QPerformance(Class extends Performance> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.clientReference = _super.clientReference;
this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
this.executionId = inits.isInitialized("executionId") ? new org.bson.types.QObjectId(forProperty("executionId")) : null;
this.id = _super.id;
this.upsertTime = _super.upsertTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy