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

com.netgrif.application.engine.petrinet.domain.QComponent Maven / Gradle / Ivy

package com.netgrif.application.engine.petrinet.domain;

import static com.querydsl.core.types.PathMetadataFactory.*;

import com.querydsl.core.types.dsl.*;

import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;


/**
 * QComponent is a Querydsl query type for Component
 */
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QComponent extends BeanPath {

    private static final long serialVersionUID = -1781185438L;

    public static final QComponent component = new QComponent("component");

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

    public final ListPath> optionIcons = this.>createList("optionIcons", Icon.class, SimplePath.class, PathInits.DIRECT2);

    public final MapPath properties = this.createMap("properties", String.class, String.class, StringPath.class);

    public QComponent(String variable) {
        super(Component.class, forVariable(variable));
    }

    public QComponent(Path path) {
        super(path.getType(), path.getMetadata());
    }

    public QComponent(PathMetadata metadata) {
        super(Component.class, metadata);
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy