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

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


/**
 * QWidget is a Querydsl query type for Widget
 */
@Generated("com.mysema.query.codegen.EmbeddableSerializer")
public class QWidget extends BeanPath {

    private static final long serialVersionUID = 1658341542L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QWidget widget = new QWidget("widget");

    public final org.bson.types.QObjectId componentId;

    public final org.bson.types.QObjectId id;

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

    public final MapPath> options = this.>createMap("options", String.class, Object.class, SimplePath.class);

    public QWidget(String variable) {
        this(Widget.class, forVariable(variable), INITS);
    }

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

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

    public QWidget(PathMetadata metadata, PathInits inits) {
        this(Widget.class, metadata, inits);
    }

    public QWidget(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.componentId = inits.isInitialized("componentId") ? new org.bson.types.QObjectId(forProperty("componentId")) : null;
        this.id = inits.isInitialized("id") ? new org.bson.types.QObjectId(forProperty("id")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy