1 package org.hibernate.metadata; 3 4 import org.hibernate.type.Type; 5 6 11 public interface CollectionMetadata { 12 15 public Type getKeyType(); 16 19 public Type getElementType(); 20 23 public Type getIndexType(); 24 27 public boolean hasIndex(); 28 31 public String getRole(); 32 35 public boolean isArray(); 36 39 public boolean isPrimitiveArray(); 40 43 public boolean isLazy(); 44 } 45 46 47 48 49 50 51 | Popular Tags |