Package ubic.gemma.persistence.util
Interface PropertyMapping
public interface PropertyMapping
Represents a mapping between a query/criteria property and some original property space.
- Author:
- poirigui
-
Method Summary
Modifier and TypeMethodDescriptionAlias in the query/criteria space, if applicable.Obtain the original property, if available.Property name in the query/criteria space.Render this with its original property.toString()Render this with itsgetObjectAlias()andgetPropertyName().
-
Method Details
-
getObjectAlias
Alias in the query/criteria space, if applicable.Null implies a reference to the root alias.
-
getPropertyName
String getPropertyName()Property name in the query/criteria space. -
getOriginalProperty
Obtain the original property, if available. -
toOriginalString
String toOriginalString()Render this with its original property.If no original property are attached to this mapping, this method should return the same as
toString(). -
toString
String toString()Render this with itsgetObjectAlias()andgetPropertyName().
-