
io.cloudslang.engine.data.QAbstractIdentifiable Maven / Gradle / Ivy
The newest version!
package io.cloudslang.engine.data;
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;
/**
* QAbstractIdentifiable is a Querydsl query type for AbstractIdentifiable
*/
@Generated("com.mysema.query.codegen.SupertypeSerializer")
public class QAbstractIdentifiable extends EntityPathBase {
private static final long serialVersionUID = 1030464490L;
public static final QAbstractIdentifiable abstractIdentifiable = new QAbstractIdentifiable("abstractIdentifiable");
public final NumberPath id = createNumber("id", Long.class);
public QAbstractIdentifiable(String variable) {
super(AbstractIdentifiable.class, forVariable(variable));
}
public QAbstractIdentifiable(Path extends AbstractIdentifiable> path) {
super(path.getType(), path.getMetadata());
}
public QAbstractIdentifiable(PathMetadata> metadata) {
super(AbstractIdentifiable.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy