Class EntityResultMetadata


  • public class EntityResultMetadata
    extends ORMetadata
    INTERNAL: Object to hold onto an entity result metadata. Key notes: - any metadata mapped from XML to this class must be compared in the equals method. - all metadata mapped from XML must be initialized in the initXMLObject method. - when loading from annotations, the constructor accepts the metadata accessor this metadata was loaded from. Used it to look up any 'companion' annotation needed for processing. - methods should be preserved in alphabetical order.
    Since:
    TopLink EJB 3.0 Reference Implementation
    Author:
    Guy Pelletier
    • Constructor Detail

      • EntityResultMetadata

        public EntityResultMetadata()
        INTERNAL: Used for XML loading.
    • Method Detail

      • equals

        public boolean equals​(Object objectToCompare)
        INTERNAL:
        Specified by:
        equals in class ORMetadata
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getDiscriminatorColumn

        public String getDiscriminatorColumn()
        INTERNAL: Used for OX mapping.
      • getEntityClass

        public MetadataClass getEntityClass()
        INTERNAL:
      • getEntityClassName

        public String getEntityClassName()
        INTERNAL: Used for OX mapping.
      • process

        public EntityResult process()
        INTERNAL: Process the entity result for the given sql result set mapping.
      • setDiscriminatorColumn

        public void setDiscriminatorColumn​(String discriminatorColumn)
        INTERNAL: Used for OX mapping.
      • setEntityClass

        public void setEntityClass​(MetadataClass entityClass)
        INTERNAL:
      • setEntityClassName

        public void setEntityClassName​(String entityClassName)
        INTERNAL: Used for OX mapping.
      • setFieldResults

        public void setFieldResults​(List<FieldResultMetadata> fieldResults)
        INTERNAL: Used for OX mapping.