be.personify.iam.model.util.location.QCountry 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;
/**
* QCountry is a Querydsl query type for Country
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QCountry extends EntityPathBase {
private static final long serialVersionUID = -1236116679L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCountry country = new QCountry("country");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final StringPath capital = createString("capital");
public final StringPath code = createString("code");
public final StringPath codeTwoDigit = createString("codeTwoDigit");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final QCurrency currency;
public final StringPath description = createString("description");
public final NumberPath id = createNumber("id", Long.class);
public final StringPath internetExtension = createString("internetExtension");
public final QLocation location;
//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 final StringPath telephoneCode = createString("telephoneCode");
public QCountry(String variable) {
this(Country.class, forVariable(variable), INITS);
}
public QCountry(Path extends Country> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QCountry(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QCountry(PathMetadata metadata, PathInits inits) {
this(Country.class, metadata, inits);
}
public QCountry(Class extends Country> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.currency = inits.isInitialized("currency") ? new QCurrency(forProperty("currency")) : null;
this.location = inits.isInitialized("location") ? new QLocation(forProperty("location")) : null;
}
}