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

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


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

    private static final long serialVersionUID = -1034927520L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QFeatureFlag featureFlag = new QFeatureFlag("featureFlag");

    public final QBaseModel _super;

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

    public final MapPath flags = this.createMap("flags", String.class, Boolean.class, BooleanPath.class);

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

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

    public QFeatureFlag(String variable) {
        this(FeatureFlag.class, forVariable(variable), INITS);
    }

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

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

    public QFeatureFlag(PathMetadata metadata, PathInits inits) {
        this(FeatureFlag.class, metadata, inits);
    }

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy