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

com.capitalone.dashboard.model.QCloudVolumeStorage Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package com.capitalone.dashboard.model;

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;


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

    private static final long serialVersionUID = -1707352786L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QCloudVolumeStorage cloudVolumeStorage = new QCloudVolumeStorage("cloudVolumeStorage");

    public final QBaseModel _super;

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

    public final ListPath attachInstances = this.createList("attachInstances", String.class, StringPath.class, PathInits.DIRECT2);

    public final NumberPath creationDate = createNumber("creationDate", Long.class);

    public final BooleanPath encrypted = createBoolean("encrypted");

    // inherited
    public final org.bson.types.QObjectId id;

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

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

    public final ListPath tags = this.createList("tags", NameValue.class, QNameValue.class, PathInits.DIRECT2);

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

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

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

    public QCloudVolumeStorage(String variable) {
        this(CloudVolumeStorage.class, forVariable(variable), INITS);
    }

    public QCloudVolumeStorage(Path path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

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

    public QCloudVolumeStorage(PathMetadata metadata, PathInits inits) {
        this(CloudVolumeStorage.class, metadata, inits);
    }

    public QCloudVolumeStorage(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseModel(type, metadata, inits);
        this.id = _super.id;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy