Documentation Home
MySQL NDB Cluster API Developer Guide
Related Documentation Download this Manual
PDF (US Ltr) - 3.6Mb
PDF (A4) - 3.6Mb


4.3.3.5 QueryDomainType

QueryDomainType represents the domain type of a query. The domain type validates property names that are used to filter results.

4.3.3.5.1 Synopsis
 public interface QueryDomainType<E> extends, QueryDefinition<E> {
// Public Methods  public abstract PredicateOperand get(String propertyName);
  public abstract Class<E> getType();
}
4.3.3.5.2 get(String)
public abstract PredicateOperand get(String propertyName);

Get a PredicateOperand representing a property of the domain type.

Table 4.115 get(String)

Parameter Description
propertyName the name of the property
return a representation the value of the property

4.3.3.5.3 getType()
public abstract Class<E> getType();

Get the domain type of the query.

Table 4.116 getType()

Parameter Description
return the domain type of the query