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

com.eurodyn.qlack.fuse.cm.model.QNodeAttribute Maven / Gradle / Ivy

There is a newer version: 3.6.8
Show newest version
package com.eurodyn.qlack.fuse.cm.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;


/**
 * QNodeAttribute is a Querydsl query type for NodeAttribute
 */
@Generated("com.querydsl.codegen.EntitySerializer")
public class QNodeAttribute extends EntityPathBase {

    private static final long serialVersionUID = 1828970415L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QNodeAttribute nodeAttribute = new QNodeAttribute("nodeAttribute");

    public final com.eurodyn.qlack.common.model.QQlackBaseModel _super = new com.eurodyn.qlack.common.model.QQlackBaseModel(this);

    public final NumberPath dbversion = createNumber("dbversion", Long.class);

    //inherited
    public final StringPath id = _super.id;

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

    public final QNode node;

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

    public QNodeAttribute(String variable) {
        this(NodeAttribute.class, forVariable(variable), INITS);
    }

    public QNodeAttribute(Path path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }

    public QNodeAttribute(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }

    public QNodeAttribute(PathMetadata metadata, PathInits inits) {
        this(NodeAttribute.class, metadata, inits);
    }

    public QNodeAttribute(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.node = inits.isInitialized("node") ? new QNode(forProperty("node"), inits.get("node")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy