org.hibernate.property
Class DirectPropertyAccessor.DirectGetter

java.lang.Object
  extended by org.hibernate.property.DirectPropertyAccessor.DirectGetter
All Implemented Interfaces:
Serializable, Getter
Enclosing class:
DirectPropertyAccessor

public static final class DirectPropertyAccessor.DirectGetter
extends Object
implements Getter

See Also:
Serialized Form

Method Summary
 Object get(Object target)
          Get the property value from the given instance .
 Object getForInsert(Object target, Map mergeMap, SessionImplementor session)
          Get the property value from the given owner instance.
 Member getMember()
          Retrieve the member to which this property maps.
 Method getMethod()
          Retrieve the getter-method.
 String getMethodName()
          Retrieve the getter-method name.
 Class getReturnType()
          Retrieve the declared Java type
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

get

public Object get(Object target)
           throws HibernateException
Get the property value from the given instance .

Specified by:
get in interface Getter
Parameters:
target - The instance containing the value to be retreived.
Returns:
The extracted value.
Throws:
HibernateException

getForInsert

public Object getForInsert(Object target,
                           Map mergeMap,
                           SessionImplementor session)
Get the property value from the given owner instance.

Specified by:
getForInsert in interface Getter
Parameters:
target - The instance containing the value to be retreived.
mergeMap - a map of merged persistent instances to detached instances
session - The session from which this request originated.
Returns:
The extracted value.

getMember

public Member getMember()
Retrieve the member to which this property maps. This might be the field or it might be the getter method.

Specified by:
getMember in interface Getter
Returns:
The mapped member.

getMethod

public Method getMethod()
Retrieve the getter-method.

Optional operation (return null)

Specified by:
getMethod in interface Getter
Returns:
The getter method, or null.

getMethodName

public String getMethodName()
Retrieve the getter-method name.

Optional operation (return null)

Specified by:
getMethodName in interface Getter
Returns:
The name of the getter method, or null.

getReturnType

public Class getReturnType()
Retrieve the declared Java type

Specified by:
getReturnType in interface Getter
Returns:
The declared java type.

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.