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

com.ocs.dynamo.functional.domain.QTranslation Maven / Gradle / Ivy

There is a newer version: 1.6.3-CB3
Show newest version
package com.ocs.dynamo.functional.domain;

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;


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

    private static final long serialVersionUID = -156264150L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QTranslation translation1 = new QTranslation("translation1");

    public final com.ocs.dynamo.domain.QAbstractEntity _super = new com.ocs.dynamo.domain.QAbstractEntity(this);

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

    public final NumberPath id = createNumber("id", Integer.class);

    public final QLocale locale;

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

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

    //inherited
    public final NumberPath version = _super.version;

    @SuppressWarnings("all")
    public QTranslation(String variable) {
        this((Class)Translation.class, forVariable(variable), INITS);
    }

    @SuppressWarnings("all")
    public QTranslation(Path path) {
        this((Class)path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

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

    @SuppressWarnings("all")
    public QTranslation(PathMetadata metadata, PathInits inits) {
        this((Class)Translation.class, metadata, inits);
    }

    public QTranslation(Class> type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.locale = inits.isInitialized("locale") ? new QLocale(forProperty("locale")) : null;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy