Enum MappingType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<MappingType>

    public enum MappingType
    extends java.lang.Enum<MappingType>
    Enum defining types of mappings, for use with a MappingConsumer.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private MappingType()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static MappingType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static MappingType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • VERSION

        public static final MappingType VERSION
        (Surrogate) version column
      • DATASTORE_ID

        public static final MappingType DATASTORE_ID
        Datastore id column.
      • DISCRIMINATOR

        public static final MappingType DISCRIMINATOR
        Discriminator column.
      • MULTITENANCY

        public static final MappingType MULTITENANCY
        Multitenancy column.
      • SOFTDELETE

        public static final MappingType SOFTDELETE
        Soft-delete flag column.
      • CREATEUSER

        public static final MappingType CREATEUSER
        Create-user audit column.
      • UPDATEUSER

        public static final MappingType UPDATEUSER
        Update-user audit column.
      • CREATETIMESTAMP

        public static final MappingType CREATETIMESTAMP
        Create-timestamp audit column.
      • UPDATETIMESTAMP

        public static final MappingType UPDATETIMESTAMP
        Update-timestamp audit column.
      • EXTERNAL_INDEX

        public static final MappingType EXTERNAL_INDEX
        List index from related class.
      • EXTERNAL_FK

        public static final MappingType EXTERNAL_FK
        FK from related class (N side of 1-N).
      • EXTERNAL_FK_DISCRIMINATOR

        public static final MappingType EXTERNAL_FK_DISCRIMINATOR
        Shared relation discriminator, from related class (N side of 1-N).
    • Constructor Detail

      • MappingType

        private MappingType()
    • Method Detail

      • values

        public static MappingType[] 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 (MappingType c : MappingType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MappingType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null