Enum BaseUDT.Storage

    • Enum Constant Detail

      • PLAIN

        public static final BaseUDT.Storage PLAIN
        Never compressed or stored out-of-line.
      • EXTERNAL

        public static final BaseUDT.Storage EXTERNAL
        Can be moved out-of-line but not compressed.
      • EXTENDED

        public static final BaseUDT.Storage EXTENDED
        Can be compressed, and moved out-of-line if still too big.
      • MAIN

        public static final BaseUDT.Storage MAIN
        Can be compressed, but moved out-of-line only if there is no other way to make the containing tuple fit a page.
    • Method Detail

      • values

        public static BaseUDT.Storage[] values()
        Returns an array containing the constants of this enum type, in the order they are declared.
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BaseUDT.Storage 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