QRelatedCollectorItem.java

package com.capitalone.dashboard.model.relation;

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;


/**
 * QRelatedCollectorItem is a Querydsl query type for RelatedCollectorItem
 */
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QRelatedCollectorItem extends EntityPathBase<RelatedCollectorItem> {

    private static final long serialVersionUID = 57728805L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QRelatedCollectorItem relatedCollectorItem = new QRelatedCollectorItem("relatedCollectorItem");

    public final com.capitalone.dashboard.model.QBaseModel _super;

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

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

    public final org.bson.types.QObjectId left;

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

    public final org.bson.types.QObjectId right;

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

    public QRelatedCollectorItem(String variable) {
        this(RelatedCollectorItem.class, forVariable(variable), INITS);
    }

    public QRelatedCollectorItem(Path<? extends RelatedCollectorItem> path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

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

    public QRelatedCollectorItem(PathMetadata<?> metadata, PathInits inits) {
        this(RelatedCollectorItem.class, metadata, inits);
    }

    public QRelatedCollectorItem(Class<? extends RelatedCollectorItem> type, PathMetadata<?> metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new com.capitalone.dashboard.model.QBaseModel(type, metadata, inits);
        this.id = _super.id;
        this.left = inits.isInitialized("left") ? new org.bson.types.QObjectId(forProperty("left")) : null;
        this.right = inits.isInitialized("right") ? new org.bson.types.QObjectId(forProperty("right")) : null;
    }

}