Enum SqlMergeMode.MergeMode

    • Enum Constant Detail

      • MERGE

        public static final SqlMergeMode.MergeMode MERGE
        Indicates that method-level @Sql declarations should be merged with class-level @Sql declarations, with class-level SQL scripts and statements executed before method-level scripts and statements.
      • OVERRIDE

        public static final SqlMergeMode.MergeMode OVERRIDE
        Indicates that method-level @Sql declarations should override class-level @Sql declarations.
    • Method Detail

      • values

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

        public static SqlMergeMode.MergeMode 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