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​(java.lang.Object objectToCompare)
        INTERNAL:
        Specified by:
        equals in class ORMetadata
      • hashCode

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

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

        public MetadataClass getEntityClass()
        INTERNAL:
      • getEntityClassName

        public java.lang.String getEntityClassName()
        INTERNAL: Used for OX mapping.
      • getFieldResults

        public java.util.List<FieldResultMetadata> getFieldResults()
        INTERNAL: Used for OX mapping.
      • process

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

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

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

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

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