Enum XmlElementMetadata

    • Enum Constant Detail

      • COMPOSITE_ID

        public static final XmlElementMetadata COMPOSITE_ID
        Describes the <composite-id/> element
      • DISCRIMINATOR

        public static final XmlElementMetadata DISCRIMINATOR
        Describes the <discriminator/> element
      • MULTI_TENANCY

        public static final XmlElementMetadata MULTI_TENANCY
        Describes the <multi-tenancy/> element
      • VERSION

        public static final XmlElementMetadata VERSION
        Describes the <version/> element
      • TIMESTAMP

        public static final XmlElementMetadata TIMESTAMP
        Describes the <timestamp/> element
      • NATURAL_ID

        public static final XmlElementMetadata NATURAL_ID
        Describes the <natural-id/> element
      • PROPERTIES

        public static final XmlElementMetadata PROPERTIES
        Describes the <properties/> element
      • PROPERTY

        public static final XmlElementMetadata PROPERTY
        Describes the <property/> element
      • KEY_PROPERTY

        public static final XmlElementMetadata KEY_PROPERTY
        Describes the <key-property/> element
      • MANY_TO_ONE

        public static final XmlElementMetadata MANY_TO_ONE
        Describes the <many-to-one/> element
      • KEY_MANY_TO_ONE

        public static final XmlElementMetadata KEY_MANY_TO_ONE
        Describes the <key-many-to-one/> element
      • ONE_TO_ONE

        public static final XmlElementMetadata ONE_TO_ONE
        Describes the <one-to-one/> element
      • COMPONENT

        public static final XmlElementMetadata COMPONENT
        Describes the <component/> element
      • PRIMITIVE_ARRAY

        public static final XmlElementMetadata PRIMITIVE_ARRAY
        Describes the <primitive-array/> element
      • COLLECTION_ID

        public static final XmlElementMetadata COLLECTION_ID
        Describes the <collection-id/> element
      • ELEMENT

        public static final XmlElementMetadata ELEMENT
        Describes the <element/> element
      • MANY_TO_MANY

        public static final XmlElementMetadata MANY_TO_MANY
        Describes the <many-to-many/> element
      • MANY_TO_ANY

        public static final XmlElementMetadata MANY_TO_ANY
        Describes the <many-to-any/> element
      • MAP_KEY

        public static final XmlElementMetadata MAP_KEY
        Describes the <map-key/> element
      • MAP_KEY_MANY_TO_MANY

        public static final XmlElementMetadata MAP_KEY_MANY_TO_MANY
        Describes the <map-key-many-to-many/> element
      • INDEX_MANY_TO_MANY

        public static final XmlElementMetadata INDEX_MANY_TO_MANY
        Describes the <index-many-to-many/> element
      • LIST_INDEX

        public static final XmlElementMetadata LIST_INDEX
        Describes the <list-index/> element
    • Method Detail

      • values

        public static XmlElementMetadata[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (XmlElementMetadata c : XmlElementMetadata.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static XmlElementMetadata valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getElementName

        public String getElementName()
        The corresponding hbm.xml element name. Used in error reporting
        Returns:
        The hbm.xml element name
      • isInherentlySingleColumn

        public boolean isInherentlySingleColumn()
        Can this source, by nature, define just a single column/formula?
        Returns:
        true indicates that the source will refer to just a single column.
      • canBeNamed

        public boolean canBeNamed()
        Can the source be named. This is used in implicit naming (naming strategy).
        Returns:
        true indicates that the source can be named and therefore the column (assuming just one) is eligible for implicit naming.