com.mg.framework.entity.metadata.QMirrorPropertyEntity Maven / Gradle / Ivy
The newest version!
package com.mg.framework.entity.metadata;
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;
/**
* QMirrorPropertyEntity is a Querydsl query type for MirrorPropertyEntity
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QMirrorPropertyEntity extends EntityPathBase {
private static final long serialVersionUID = -1237565950L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QMirrorPropertyEntity mirrorPropertyEntity = new QMirrorPropertyEntity("mirrorPropertyEntity");
public final com.mg.framework.entity.model.QBaseEntity _super = new com.mg.framework.entity.model.QBaseEntity(this);
public final QMObjectEntity belongMObject;
public final EnumPath controllerType = createEnum("controllerType", MControllerTypeEnum.class);
//inherited
public final StringPath createdById = _super.createdById;
//inherited
public final DateTimePath createdDate = _super.createdDate;
//inherited
public final StringPath createdName = _super.createdName;
public final NumberPath deep = createNumber("deep", Integer.class);
public final StringPath enumName = createString("enumName");
public final StringPath fieldName = createString("fieldName");
public final StringPath formula = createString("formula");
//inherited
public final StringPath id = _super.id;
public final EnumPath inVisibleType = createEnum("inVisibleType", MInVisibleTypeEnum.class);
public final BooleanPath isNullable = createBoolean("isNullable");
public final BooleanPath isReadOnly = createBoolean("isReadOnly");
public final BooleanPath isSearchCondition = createBoolean("isSearchCondition");
public final QMPropertyEntity metaProperty;
public final StringPath name = createString("name");
public final QMirrorPropertyEntity parentProperty;
public final StringPath propertyObjectId = createString("propertyObjectId");
public final StringPath propertyPath = createString("propertyPath");
public final QMObjectEntity rootMObject;
public final StringPath secondName = createString("secondName");
public final NumberPath sort = createNumber("sort", Integer.class);
//inherited
public final StringPath updatedById = _super.updatedById;
//inherited
public final DateTimePath updatedDate = _super.updatedDate;
//inherited
public final StringPath updatedName = _super.updatedName;
public QMirrorPropertyEntity(String variable) {
this(MirrorPropertyEntity.class, forVariable(variable), INITS);
}
public QMirrorPropertyEntity(Path extends MirrorPropertyEntity> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QMirrorPropertyEntity(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QMirrorPropertyEntity(PathMetadata> metadata, PathInits inits) {
this(MirrorPropertyEntity.class, metadata, inits);
}
public QMirrorPropertyEntity(Class extends MirrorPropertyEntity> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this.belongMObject = inits.isInitialized("belongMObject") ? new QMObjectEntity(forProperty("belongMObject")) : null;
this.metaProperty = inits.isInitialized("metaProperty") ? new QMPropertyEntity(forProperty("metaProperty"), inits.get("metaProperty")) : null;
this.parentProperty = inits.isInitialized("parentProperty") ? new QMirrorPropertyEntity(forProperty("parentProperty"), inits.get("parentProperty")) : null;
this.rootMObject = inits.isInitialized("rootMObject") ? new QMObjectEntity(forProperty("rootMObject")) : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy