QueryDomainType represents the domain type of a query. The domain type validates property names that are used to filter results.
public interface com.mysql.clusterj.query.QueryDomainType<E> extends com.mysql.clusterj.query.QueryDefinition<E> {
// Public Methodspublic com.mysql.clusterj.query.PredicateOperand get(java.lang.String propertyName);
public java.lang.Class<E> getType();
}
public com.mysql.clusterj.query.PredicateOperand get(java.lang.String propertyName);
Get a PredicateOperand representing a property of the domain type.
Parameters | |
propertyName |
the name of the property |
return |
a representation the value of the property |