All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.model.QGenericCollectorItem Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
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;


/**
 * QGenericCollectorItem is a Querydsl query type for GenericCollectorItem
 */
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QGenericCollectorItem extends EntityPathBase {

    private static final long serialVersionUID = -665066613L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QGenericCollectorItem genericCollectorItem = new QGenericCollectorItem("genericCollectorItem");

    public final QBaseModel _super;

    public final org.bson.types.QObjectId buildId;

    public final org.bson.types.QObjectId collectorId;

    public final NumberPath creationTime = createNumber("creationTime", Long.class);

    // inherited
    public final org.bson.types.QObjectId id;

    public final NumberPath processTime = createNumber("processTime", Long.class);

    public final StringPath rawData = createString("rawData");

    public final org.bson.types.QObjectId relatedCollectorItem;

    public final StringPath source = createString("source");

    public final StringPath toolName = createString("toolName");

    public QGenericCollectorItem(String variable) {
        this(GenericCollectorItem.class, forVariable(variable), INITS);
    }

    public QGenericCollectorItem(Path path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QGenericCollectorItem(PathMetadata metadata) {
        this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QGenericCollectorItem(PathMetadata metadata, PathInits inits) {
        this(GenericCollectorItem.class, metadata, inits);
    }

    public QGenericCollectorItem(Class 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.collectorId = inits.isInitialized("collectorId") ? new org.bson.types.QObjectId(forProperty("collectorId")) : null;
        this.id = _super.id;
        this.relatedCollectorItem = inits.isInitialized("relatedCollectorItem") ? new org.bson.types.QObjectId(forProperty("relatedCollectorItem")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy