Package org.hibernate

Enum FlushMode

    • Method Detail

      • values

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

        public static FlushMode 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
      • lessThan

        public boolean lessThan​(FlushMode other)
        Compare this flush mode to the given flush mode.
        Returns:
        true if this flush mode flushes less often than the given flush mode
      • interpretExternalSetting

        public static FlushMode interpretExternalSetting​(String externalName)
        Interprets an external representation of a flush mode.
        Parameters:
        externalName - the name of a FlushMode, or of a FlushModeType
        Returns:
        a FlushMode, or null if the argument was null
        Throws:
        MappingException - for an unrecognized external representation