com.capitalone.dashboard.model.QNameValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
/**
* QNameValue is a Querydsl query type for NameValue
*/
@Generated("com.querydsl.codegen.EmbeddableSerializer")
public class QNameValue extends BeanPath {
private static final long serialVersionUID = 294708228L;
public static final QNameValue nameValue = new QNameValue("nameValue");
public final StringPath name = createString("name");
public final StringPath value = createString("value");
public QNameValue(String variable) {
super(NameValue.class, forVariable(variable));
}
public QNameValue(Path extends NameValue> path) {
super(path.getType(), path.getMetadata());
}
public QNameValue(PathMetadata metadata) {
super(NameValue.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy