Class Human
- java.lang.Object
-
- org.hibernate.testing.orm.domain.animal.Animal
-
- org.hibernate.testing.orm.domain.animal.Mammal
-
- org.hibernate.testing.orm.domain.animal.Human
-
-
Constructor Summary
Constructors Constructor Description Human()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,Address>
getAddresses()
java.math.BigDecimal
getBigDecimalValue()
java.math.BigInteger
getBigIntegerValue()
java.util.Map<java.lang.String,Human>
getFamily()
float
getFloatValue()
java.util.Collection<Human>
getFriends()
double
getHeightInches()
int
getIntValue()
Name
getName()
java.lang.String
getNickName()
java.util.Set<java.lang.String>
getNickNames()
java.util.Collection<DomesticAnimal>
getPets()
void
setAddresses(java.util.Map<java.lang.String,Address> addresses)
void
setBigDecimalValue(java.math.BigDecimal bigDecimalValue)
void
setBigIntegerValue(java.math.BigInteger bigIntegerValue)
void
setFamily(java.util.Map family)
void
setFloatValue(float floatValue)
void
setFriends(java.util.Collection<Human> friends)
void
setHeightInches(double height)
void
setIntValue(int intValue)
void
setName(Name name)
void
setNickName(java.lang.String nickName)
void
setNickNames(java.util.Set<java.lang.String> nickNames)
void
setPets(java.util.Collection<DomesticAnimal> pets)
-
Methods inherited from class org.hibernate.testing.orm.domain.animal.Mammal
equals, getBirthdate, hashCode, isPregnant, setBirthdate, setPregnant
-
Methods inherited from class org.hibernate.testing.orm.domain.animal.Animal
addOffspring, getBodyWeight, getDescription, getFather, getId, getMother, getOffspring, getSerialNumber, getZoo, setBodyWeight, setDescription, setFather, setId, setMother, setOffspring, setSerialNumber, setZoo
-
-
-
-
Method Detail
-
getName
public Name getName()
-
setName
public void setName(Name name)
-
getNickName
public java.lang.String getNickName()
-
setNickName
public void setNickName(java.lang.String nickName)
-
getHeightInches
public double getHeightInches()
-
setHeightInches
public void setHeightInches(double height)
-
getBigDecimalValue
public java.math.BigDecimal getBigDecimalValue()
-
setBigDecimalValue
public void setBigDecimalValue(java.math.BigDecimal bigDecimalValue)
-
getBigIntegerValue
public java.math.BigInteger getBigIntegerValue()
-
setBigIntegerValue
public void setBigIntegerValue(java.math.BigInteger bigIntegerValue)
-
getFloatValue
public float getFloatValue()
-
setFloatValue
public void setFloatValue(float floatValue)
-
getIntValue
public int getIntValue()
-
setIntValue
public void setIntValue(int intValue)
-
getNickNames
public java.util.Set<java.lang.String> getNickNames()
-
setNickNames
public void setNickNames(java.util.Set<java.lang.String> nickNames)
-
getFriends
public java.util.Collection<Human> getFriends()
-
setFriends
public void setFriends(java.util.Collection<Human> friends)
-
getPets
public java.util.Collection<DomesticAnimal> getPets()
-
setPets
public void setPets(java.util.Collection<DomesticAnimal> pets)
-
getFamily
public java.util.Map<java.lang.String,Human> getFamily()
-
setFamily
public void setFamily(java.util.Map family)
-
getAddresses
public java.util.Map<java.lang.String,Address> getAddresses()
-
setAddresses
public void setAddresses(java.util.Map<java.lang.String,Address> addresses)
-
-