Package ubic.gemma.persistence.util
Interface PropertyMapping
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getObjectAlias()
Alias in the query/criteria space, if applicable.String
getOriginalProperty()
Obtain the original property, if available.String
getPropertyName()
Property name in the query/criteria space.String
toOriginalString()
Render this with its original property.String
toString()
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()
.
-
-