Enum GridPreservation

    • Enum Constant Detail

      • NO_ROW_PRESERVATION

        public static final GridPreservation NO_ROW_PRESERVATION
        No guarantees are asserted about the transformation.
      • PRESERVES_ROWS

        public static final GridPreservation PRESERVES_ROWS
        The project is guaranteed to have as many rows before and after the change.
      • PRESERVES_RECORDS

        public static final GridPreservation PRESERVES_RECORDS
        Stronger than PRESERVES_ROWS: not only it preserves rows, but the record boundaries stay the same.
    • Method Detail

      • values

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

        public static GridPreservation 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