1 package net.sf.saxon.type; 2 import net.sf.saxon.om.Item; 3 import net.sf.saxon.om.NamePool; 4 5 import java.io.Serializable ; 6 7 8 19 20 public interface ItemType extends Serializable { 21 22 27 28 public boolean matchesItem(Item item); 29 30 42 43 public ItemType getSuperType(); 44 45 53 54 public ItemType getPrimitiveItemType(); 55 56 64 65 public int getPrimitiveType(); 66 67 71 72 public String toString(NamePool pool); 73 74 78 79 public AtomicType getAtomizedItemType(); 80 81 } 82 83 | Popular Tags |