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

com.capitalone.dashboard.model.QTeamInventory 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;


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

    private static final long serialVersionUID = 1769918173L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QTeamInventory teamInventory = new QTeamInventory("teamInventory");

    public final QBaseModel _super;

    public final QCollector collector;

    public final org.bson.types.QObjectId collectorId;

    public final org.bson.types.QObjectId collectorItemId;

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

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

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

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

    public final ListPath teamMembers = this.createList("teamMembers", TeamMember.class, QTeamMember.class, PathInits.DIRECT2);

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

    public QTeamInventory(String variable) {
        this(TeamInventory.class, forVariable(variable), INITS);
    }

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

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

    public QTeamInventory(PathMetadata metadata, PathInits inits) {
        this(TeamInventory.class, metadata, inits);
    }

    public QTeamInventory(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseModel(type, metadata, inits);
        this.collector = inits.isInitialized("collector") ? new QCollector(forProperty("collector"), inits.get("collector")) : null;
        this.collectorId = inits.isInitialized("collectorId") ? new org.bson.types.QObjectId(forProperty("collectorId")) : null;
        this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
        this.id = _super.id;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy