com.capitalone.dashboard.model.QAutoDiscoverCollectorItem 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;
/**
* QAutoDiscoverCollectorItem is a Querydsl query type for AutoDiscoverCollectorItem
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QAutoDiscoverCollectorItem extends EntityPathBase {
private static final long serialVersionUID = 421187526L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QAutoDiscoverCollectorItem autoDiscoverCollectorItem = new QAutoDiscoverCollectorItem("autoDiscoverCollectorItem");
public final QCollectorItem _super;
public final EnumPath autoDiscoverStatus = createEnum("autoDiscoverStatus", AutoDiscoveryStatusType.class);
// inherited
public final QCollector collector;
// inherited
public final org.bson.types.QObjectId collectorId;
//inherited
public final StringPath description;
//inherited
public final BooleanPath enabled;
//inherited
public final StringPath environment;
//inherited
public final NumberPath errorCount;
//inherited
public final ListPath errors;
// inherited
public final org.bson.types.QObjectId id;
//inherited
public final NumberPath lastUpdated;
//inherited
public final StringPath niceName;
//inherited
public final MapPath> options;
//inherited
public final BooleanPath pushed;
public QAutoDiscoverCollectorItem(String variable) {
this(AutoDiscoverCollectorItem.class, forVariable(variable), INITS);
}
public QAutoDiscoverCollectorItem(Path extends AutoDiscoverCollectorItem> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QAutoDiscoverCollectorItem(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QAutoDiscoverCollectorItem(PathMetadata> metadata, PathInits inits) {
this(AutoDiscoverCollectorItem.class, metadata, inits);
}
public QAutoDiscoverCollectorItem(Class extends AutoDiscoverCollectorItem> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QCollectorItem(type, metadata, inits);
this.collector = _super.collector;
this.collectorId = _super.collectorId;
this.description = _super.description;
this.enabled = _super.enabled;
this.environment = _super.environment;
this.errorCount = _super.errorCount;
this.errors = _super.errors;
this.id = _super.id;
this.lastUpdated = _super.lastUpdated;
this.niceName = _super.niceName;
this.options = _super.options;
this.pushed = _super.pushed;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy