1 5 package org.hibernate.mapping; 6 7 11 public interface ValueVisitor { 12 13 16 Object accept(Bag bag); 17 18 21 Object accept(IdentifierBag bag); 22 23 26 Object accept(List list); 27 28 Object accept(PrimitiveArray primitiveArray); 29 Object accept(Array list); 30 31 34 Object accept(Map map); 35 36 39 Object accept(OneToMany many); 40 41 44 Object accept(Set set); 45 46 49 Object accept(Any any); 50 51 54 Object accept(SimpleValue value); 55 Object accept(DependantValue value); 56 57 Object accept(Component component); 58 59 Object accept(ManyToOne mto); 60 Object accept(OneToOne oto); 61 62 63 } 64 | Popular Tags |