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
-
@Entity public class Human extends Mammal
-
-
Constructor Summary
Constructors Constructor Description Human()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Address>getAddresses()BigDecimalgetBigDecimalValue()BigIntegergetBigIntegerValue()Map<String,Human>getFamily()floatgetFloatValue()Collection<Human>getFriends()doublegetHeightInches()intgetIntValue()NamegetName()StringgetNickName()Set<String>getNickNames()Collection<DomesticAnimal>getPets()voidsetAddresses(Map<String,Address> addresses)voidsetBigDecimalValue(BigDecimal bigDecimalValue)voidsetBigIntegerValue(BigInteger bigIntegerValue)voidsetFamily(Map family)voidsetFloatValue(float floatValue)voidsetFriends(Collection<Human> friends)voidsetHeightInches(double height)voidsetIntValue(int intValue)voidsetName(Name name)voidsetNickName(String nickName)voidsetNickNames(Set<String> nickNames)voidsetPets(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 String getNickName()
-
setNickName
public void setNickName(String nickName)
-
getHeightInches
public double getHeightInches()
-
setHeightInches
public void setHeightInches(double height)
-
getBigDecimalValue
public BigDecimal getBigDecimalValue()
-
setBigDecimalValue
public void setBigDecimalValue(BigDecimal bigDecimalValue)
-
getBigIntegerValue
public BigInteger getBigIntegerValue()
-
setBigIntegerValue
public void setBigIntegerValue(BigInteger bigIntegerValue)
-
getFloatValue
public float getFloatValue()
-
setFloatValue
public void setFloatValue(float floatValue)
-
getIntValue
public int getIntValue()
-
setIntValue
public void setIntValue(int intValue)
-
getFriends
public Collection<Human> getFriends()
-
setFriends
public void setFriends(Collection<Human> friends)
-
getPets
public Collection<DomesticAnimal> getPets()
-
setPets
public void setPets(Collection<DomesticAnimal> pets)
-
setFamily
public void setFamily(Map family)
-
-