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

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


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

    private static final long serialVersionUID = 1182554385L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QMetadata metadata = new QMetadata("metadata");

    public final QBaseModel _super;

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

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

    public final SimplePath rawData = createSimple("rawData", Object.class);

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

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

    public QMetadata(String variable) {
        this(Metadata.class, forVariable(variable), INITS);
    }

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

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

    public QMetadata(PathMetadata metadata, PathInits inits) {
        this(Metadata.class, metadata, inits);
    }

    public QMetadata(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseModel(type, metadata, inits);
        this.id = _super.id;
    }

}