be.personify.iam.model.util.location.QProvince Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.util.location;
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;
/**
* QProvince is a Querydsl query type for Province
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QProvince extends EntityPathBase {
private static final long serialVersionUID = -280388627L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QProvince province = new QProvince("province");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final QCity capital;
public final StringPath code = createString("code");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath description = createString("description");
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath name = createString("name");
public final NumberPath numberOfInhabitants = createNumber("numberOfInhabitants", Integer.class);
public QProvince(String variable) {
this(Province.class, forVariable(variable), INITS);
}
public QProvince(Path extends Province> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QProvince(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QProvince(PathMetadata metadata, PathInits inits) {
this(Province.class, metadata, inits);
}
public QProvince(Class extends Province> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.capital = inits.isInitialized("capital") ? new QCity(forProperty("capital"), inits.get("capital")) : null;
}
}