
com.capitalone.dashboard.model.QWidget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.model;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QWidget is a Querydsl query type for Widget
*/
@Generated("com.querydsl.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 extends Widget> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QWidget(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QWidget(PathMetadata metadata, PathInits inits) {
this(Widget.class, metadata, inits);
}
public QWidget(Class extends Widget> 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 - 2025 Weber Informatics LLC | Privacy Policy