站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 2.1.8 正式版 API 英文文档

TypedValue (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


net.sf.hibernate.engine
Class TypedValue

java.lang.Object
  extended bynet.sf.hibernate.engine.TypedValue
All Implemented Interfaces:
Serializable

public final class TypedValue
extends Object
implements Serializable

An ordered pair of a value and its Hibernate type.

Author:
Gavin King
See Also:
Type, Serialized Form

Constructor Summary
TypedValue(Type t, Object o)
           
 
Method Summary
 boolean equals(Object other)
           
 Type getType()
           
 Object getValue()
           
 int hashCode()
           
 void setType(Type type)
           
 void setValue(Object value)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TypedValue

public TypedValue(Type t,
                  Object o)
Method Detail

setValue

public void setValue(Object value)

getValue

public Object getValue()

setType

public void setType(Type type)

getType

public Type getType()

toString

public String toString()

hashCode

public int hashCode()

equals

public boolean equals(Object other)