Package ubic.gemma.persistence.util
Interface PropertyMapping
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetObjectAlias()Alias in the query/criteria space, if applicable.StringgetOriginalProperty()Obtain the original property, if available.StringgetPropertyName()Property name in the query/criteria space.StringtoOriginalString()Render this with its original property.StringtoString()Render this with itsgetObjectAlias()andgetPropertyName().
-
-
-
Method Detail
-
getObjectAlias
@Nullable String 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
@Nullable String 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().
-
-