1 4 package com.tc.object.dna.api; 5 6 import com.tc.object.ObjectID; 7 8 14 public interface DNA { 15 public static final int NULL_ARRAY_SIZE = -1; 16 public static final int NULL_VERSION = -1; 17 18 public long getVersion(); 19 20 public boolean hasLength(); 21 22 public int getArraySize(); 23 24 28 public boolean isDelta(); 29 30 public String getTypeName(); 31 32 41 public ObjectID getObjectID() throws DNAException; 42 43 public ObjectID getParentObjectID() throws DNAException; 44 45 50 public DNACursor getCursor(); 51 52 public String getDefiningLoaderDescription(); 53 } | Popular Tags |