mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
17 lines
345 B
Java
17 lines
345 B
Java
package io.ebeaninternal.server.query;
|
|
|
|
import io.ebeaninternal.server.type.ScalarType;
|
|
|
|
public interface STreePropertyAssocOne extends STreePropertyAssoc {
|
|
|
|
/**
|
|
* Return true if the property is an Id.
|
|
*/
|
|
boolean isAssocId();
|
|
|
|
/**
|
|
* Return the scalar type of the associated id property.
|
|
*/
|
|
ScalarType<?> getIdScalarType();
|
|
}
|